本文整理了Java中org.eclipse.che.dto.shared.DTO
类的一些代码示例,展示了DTO
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。DTO
类的具体详情如下:
包路径:org.eclipse.che.dto.shared.DTO
类名称:DTO
暂无
代码示例来源: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 StepIntoActionDto extends ActionDto, StepIntoAction {
TYPE getType();
void setType(TYPE type);
StepIntoActionDto withType(TYPE type);
@Override
SuspendPolicy getSuspendPolicy();
void setSuspendPolicy(SuspendPolicy suspendPolicy);
StepIntoActionDto withSuspendPolicy(SuspendPolicy suspendPolicy);
}
代码示例来源: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);
}
内容来源于网络,如有侵权,请联系作者删除!