org.eclipse.che.dto.shared.DTO.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(124)

本文整理了Java中org.eclipse.che.dto.shared.DTO.<init>()方法的一些代码示例,展示了DTO.<init>()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DTO.<init>()方法的具体详情如下:
包路径:org.eclipse.che.dto.shared.DTO
类名称:DTO
方法名:<init>

DTO.<init>介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.che.core/che-core-api-workspace-shared

/** @author Alexander Andrienko */
@DTO
public interface StackComponentDto extends StackComponent {

 void setName(String name);

 StackComponentDto withName(String name);

 void setVersion(String version);

 StackComponentDto withVersion(String version);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface DeleteResponseDto {
 ProjectConfigDto getConfig();

 void setConfig(ProjectConfigDto config);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-debug-shared

/** @author Anatoliy Bazko */
@DTO
public interface StepOverActionDto extends ActionDto, StepOverAction {
 TYPE getType();

 void setType(TYPE type);

 StepOverActionDto withType(TYPE type);

 @Override
 SuspendPolicy getSuspendPolicy();

 void setSuspendPolicy(SuspendPolicy suspendPolicy);

 StepOverActionDto withSuspendPolicy(SuspendPolicy suspendPolicy);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-debug-shared

/** @author andrew00x */
@DTO
public interface SimpleValueDto extends SimpleValue {
 @Override
 List<VariableDto> getVariables();

 void setVariables(List<VariableDto> variables);

 SimpleValueDto withVariables(List<VariableDto> variables);

 @Override
 String getString();

 void setString(String value);

 SimpleValueDto withString(String value);
}

代码示例来源:origin: org.eclipse.che.plugin/che-plugin-java-ext-lang-shared

/** @author Evgen Vidolob */
@DTO
public interface LinkedData {
 void setValues(List<String> values);

 List<String> getValues();
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-git-shared

/** @author andrew00x */
@DTO
public interface GitUser {
 String getName();

 void setName(String name);

 GitUser withName(String name);

 String getEmail();

 void setEmail(String email);

 GitUser withEmail(String email);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-git-shared

/**
 * Info about remote configuration.
 *
 * @author andrew00x
 */
@DTO
public interface Remote {
 String getName();

 Remote withName(String name);

 String getUrl();

 Remote withUrl(String url);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-git-shared

/**
 * Request to merge {@link #commit} with HEAD.
 *
 * @author andrew00x
 */
@DTO
public interface MergeRequest {
 /** @return commit to merge */
 String getCommit();

 void setCommit(String commit);

 MergeRequest withCommit(String commit);
}

代码示例来源:origin: org.eclipse.che/che-exec-agent-shared

@DTO
public interface ProcessSubscribeResponseDto extends DtoWithPid {
 ProcessSubscribeResponseDto withPid(int pid);

 String getEventTypes();

 ProcessSubscribeResponseDto withEventTypes(String eventTypes);

 String getText();

 ProcessSubscribeResponseDto withText(String text);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-workspace-shared

/** @author Alexander Garagatyi */
@DTO
public interface VolumeDto extends Volume {
 @Override
 String getPath();

 void setPath(String path);

 VolumeDto withPath(String path);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface ImportResponseDto {
 ProjectConfigDto getConfig();

 void setConfig(ProjectConfigDto config);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface UpdateRequestDto {
 String getWsPath();

 void setWsPath(String wsPath);

 UpdateRequestDto withWsPath(String wsPath);

 ProjectConfigDto getConfig();

 void setConfig(ProjectConfigDto config);

 UpdateRequestDto withConfig(ProjectConfigDto config);

 Map<String, String> getOptions();

 void setOptions(Map<String, String> options);

 UpdateRequestDto withOptions(Map<String, String> options);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface GetRequestDto {
 String getWsPath();

 void setWsPath(String wsPath);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

/** @author Vitalii Parfonov */
@DTO
public interface SearchResultDto {

 ItemReference getItemReference();

 void setItemReference(ItemReference itemReference);

 SearchResultDto withItemReference(ItemReference itemReference);

 List<SearchOccurrenceDto> getSearchOccurrences();

 void setSearchOccurrences(List<SearchOccurrenceDto> searchOccurrences);

 SearchResultDto withSearchOccurrences(List<SearchOccurrenceDto> searchOccurrences);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface VerifyResponseDto {
 SourceEstimation getSourceEstimation();

 void setSourceEstimation(SourceEstimation sourceEstimation);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface CreateRequestDto {
 String getWsPath();

 void setWsPath(String wsPath);

 ProjectConfigDto getConfig();

 void setConfig(ProjectConfigDto config);

 Map<String, String> getOptions();

 void setOptions(Map<String, String> options);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

@DTO
public interface DeleteRequestDto {
 String getWsPath();

 void setWsPath(String wsPath);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-debug-shared

/** @author Anatoliy Bazko */
@DTO
public interface SuspendActionDto extends ActionDto, SuspendAction {
 TYPE getType();

 void setType(TYPE type);

 SuspendActionDto withType(TYPE type);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-debug-shared

/** @author Anatoliy Bazko */
@DTO
public interface StepOutActionDto extends ActionDto, StepOutAction {
 TYPE getType();

 void setType(TYPE type);

 StepOutActionDto withType(TYPE type);

 @Override
 SuspendPolicy getSuspendPolicy();

 void setSuspendPolicy(SuspendPolicy suspendPolicy);

 StepOutActionDto withSuspendPolicy(SuspendPolicy suspendPolicy);
}

代码示例来源:origin: org.eclipse.che.core/che-core-api-project-shared

/** @author gazarenkov */
@EventOrigin("vfs")
@DTO
public interface VfsWatchEvent {

 String VFS_CHANNEL = "vfs";

 String getPath();

 VfsWatchEvent withPath(String path);

 FileWatcherEventType getType();

 VfsWatchEvent withType(FileWatcherEventType type);

 boolean isFile();

 VfsWatchEvent withFile(boolean isFile);
}

相关文章

DTO类方法