org.eclipse.scout.rt.platform.Order类的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(5.7k)|赞(0)|评价(0)|浏览(118)

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

Order介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * Configures the severities the status should have to display the menu. If an empty list is returned, the menu is
 * shown for every severity.
 */
@Order(30)
protected List<Integer> getConfiguredSeverities() {
 return new ArrayList<>();
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * If set, this value is applied to the tile field's "label" property.
 */
@ConfigProperty(ConfigProperty.STRING)
@Order(70)
protected String getConfiguredLabel() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * If set, this value is applied to the tile field's "labelVisible" property.
 */
@ConfigProperty(ConfigProperty.STRING)
@Order(70)
@SuppressWarnings("findbugs:NP_BOOLEAN_RETURN_NULL")
protected Boolean getConfiguredLabelVisible() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

@ConfigProperty(ConfigProperty.OBJECT)
@Order(320)
protected String getConfiguredDisplayStyle() {
 return DISPLAY_STYLE_DEFAULT;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * @param call
 *          that produced this result
 * @param result
 *          live list containing the result rows. Add, remove, set, replace and clear of entries in this list is
 *          supported
 */
@ConfigOperation
@Order(290)
protected void execFilterKeyLookupResult(ILookupCall<VALUE> call, List<ILookupRow<VALUE>> result) {
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * Configures the maximum size for a drop request (in bytes).
 * <p>
 * Subclasses can override this method. Default is defined by {@link IDNDSupport#DEFAULT_DROP_MAXIMUM_SIZE}.
 *
 * @return maximum size in bytes.
 */
@ConfigProperty(ConfigProperty.LONG)
@Order(190)
protected long getConfiguredDropMaximumSize() {
 return DEFAULT_DROP_MAXIMUM_SIZE;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * Called when this table is disposed, after the columns were disposed.
 * <p>
 * Subclasses can override this method. The default does nothing.
 */
@ConfigOperation
@Order(70)
protected void execDisposeTable() {
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * Called when the columns are reset.
 * <p>
 * Subclasses can override this method. The default does nothing.
 *
 * @param options
 *          Set of constants of {@link IResetColumnsOption}
 */
@ConfigOperation
@Order(90)
protected void execResetColumns(Set<String> options) {
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * If set, this value is applied to the tile field table's "headerVisible" property.
 */
@ConfigProperty(ConfigProperty.BOOLEAN)
@Order(70)
@SuppressWarnings("findbugs:NP_BOOLEAN_RETURN_NULL")
protected Boolean getConfiguredHeaderVisible() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * If set, this value is applied to the tile field table's "headerEnabled" property.
 */
@ConfigProperty(ConfigProperty.BOOLEAN)
@Order(70)
@SuppressWarnings("findbugs:NP_BOOLEAN_RETURN_NULL")
protected Boolean getConfiguredHeaderEnabled() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * @return the localized sub-title property of the form. Use {@link TEXTS}.
 */
@ConfigProperty(ConfigProperty.TEXT)
@Order(20)
protected String getConfiguredSubTitle() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

@ConfigProperty(ConfigProperty.BOOLEAN)
@Order(130)
protected boolean getConfiguredCacheBounds() {
 return false;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

@ConfigProperty(ConfigProperty.TEXT)
@Order(10)
protected String getConfiguredContent() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * Configures the maximum size for a drop request (in bytes).
 * <p>
 * Subclasses can override this method. Default is defined by {@link IDNDSupport#DEFAULT_DROP_MAXIMUM_SIZE}.
 *
 * @return maximum size in bytes.
 */
@ConfigProperty(ConfigProperty.LONG)
@Order(10)
protected long getConfiguredDropMaximumSize() {
 return DEFAULT_DROP_MAXIMUM_SIZE;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * If set, this value is applied to the tile field's "sandboxPermissions" property.
 */
@ConfigProperty(ConfigProperty.OBJECT)
@Order(70)
protected EnumSet<SandboxPermission> getConfiguredSandboxPermissions() {
 return null;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

@Order(10)
 @ClassId("2cd7e44c-c3fe-4d03-9b21-029e94982c01")
 public class BrowserField extends AbstractBrowserField {

  @Override
  public String classId() {
   return AbstractBrowserFieldTile.this.classId() + ID_CONCAT_SYMBOL + ConfigurationUtility.getAnnotatedClassIdWithFallback(getClass(), true);
  }
 }
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

@ConfigProperty(ConfigProperty.BOOLEAN)
@Order(190)
protected boolean getConfiguredAutoLoad() {
 return true;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

@ConfigProperty(ConfigProperty.BOOLEAN)
@Order(60)
protected boolean getConfiguredVisible() {
 return true;
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * @param stepKind
 *          any of the STEP_* constants activate this step normally creates a form, calls
 *          {@link IForm#startWizardStep(IWizardStep, Class)} on the form and places the form inside the wizard
 *          {@link IWizard#setWizardForm(IForm)}
 */
@Order(10)
@ConfigOperation
protected void execActivate(int stepKind) {
}

代码示例来源:origin: org.eclipse.scout.rt/org.eclipse.scout.rt.client

/**
 * Configures whether two or more consecutive clicks on the button within a short period of time (e.g. double click)
 * should be prevented by the UI.
 * <p>
 * The default is <code>false</code>.
 */
@ConfigProperty(ConfigProperty.BOOLEAN)
@Order(200)
protected boolean getConfiguredPreventDoubleClick() {
 return false;
}

相关文章

微信公众号

最新文章

更多

Order类方法