Interface GeneralSettingsPresenter.View
-
- All Superinterfaces:
org.uberfire.client.mvp.HasPresenter<GeneralSettingsPresenter>,org.jboss.errai.common.client.api.elemental2.IsElement,org.jboss.errai.ui.client.local.api.elemental2.IsElement,SectionView<GeneralSettingsPresenter>,org.uberfire.client.mvp.UberElemental<GeneralSettingsPresenter>
- All Known Implementing Classes:
GeneralSettingsView
- Enclosing class:
- GeneralSettingsPresenter
public static interface GeneralSettingsPresenter.View extends SectionView<GeneralSettingsPresenter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetArtifactId()BooleangetChildGavEditEnabled()BooleangetConflictingGAVCheckDisabled()StringgetDescription()StringgetDuplicatedProjectNameMessage()StringgetEmptyArtifactIdMessage()StringgetEmptyGroupIdMessage()StringgetEmptyNameMessage()StringgetEmptyVersionMessage()StringgetGroupId()StringgetInvalidArtifactIdMessage()StringgetInvalidGroupIdMessage()StringgetInvalidNameMessage()StringgetInvalidVersionMessage()StringgetName()StringgetVersion()voidhideError()voidsetArtifactId(String artifactId)voidsetChildGavEditEnabled(boolean value)voidsetConflictingGAVCheckDisabled(boolean value)voidsetDescription(String description)voidsetGitUrlsView(GitUrlsPresenter.View gitUrlsView)voidsetGroupId(String groupId)voidsetName(String name)voidsetVersion(String version)voidshowError(String message)-
Methods inherited from interface org.jboss.errai.ui.client.local.api.elemental2.IsElement
getElement
-
Methods inherited from interface org.kie.workbench.common.screens.library.client.settings.util.sections.SectionView
getTitle
-
-
-
-
Method Detail
-
getName
String getName()
-
getDescription
String getDescription()
-
getGroupId
String getGroupId()
-
getArtifactId
String getArtifactId()
-
setGitUrlsView
void setGitUrlsView(GitUrlsPresenter.View gitUrlsView)
-
getVersion
String getVersion()
-
getConflictingGAVCheckDisabled
Boolean getConflictingGAVCheckDisabled()
-
getChildGavEditEnabled
Boolean getChildGavEditEnabled()
-
setName
void setName(String name)
-
setDescription
void setDescription(String description)
-
setGroupId
void setGroupId(String groupId)
-
setArtifactId
void setArtifactId(String artifactId)
-
setVersion
void setVersion(String version)
-
showError
void showError(String message)
-
setConflictingGAVCheckDisabled
void setConflictingGAVCheckDisabled(boolean value)
-
setChildGavEditEnabled
void setChildGavEditEnabled(boolean value)
-
hideError
void hideError()
-
getEmptyNameMessage
String getEmptyNameMessage()
-
getInvalidNameMessage
String getInvalidNameMessage()
-
getEmptyGroupIdMessage
String getEmptyGroupIdMessage()
-
getInvalidGroupIdMessage
String getInvalidGroupIdMessage()
-
getEmptyArtifactIdMessage
String getEmptyArtifactIdMessage()
-
getInvalidArtifactIdMessage
String getInvalidArtifactIdMessage()
-
getEmptyVersionMessage
String getEmptyVersionMessage()
-
getInvalidVersionMessage
String getInvalidVersionMessage()
-
getDuplicatedProjectNameMessage
String getDuplicatedProjectNameMessage()
-
-