Tabnine Logo
FormItemDisplayType
Code IndexAdd Tabnine to your IDE (free)

How to use
FormItemDisplayType
in
com.evolveum.midpoint.xml.ns._public.common.common_3

Best Java code snippets using com.evolveum.midpoint.xml.ns._public.common.common_3.FormItemDisplayType (Showing top 20 results out of 315)

origin: Evolveum/midpoint

/**
 * Create an instance of {@link FormItemDisplayType }
 * 
 */
public FormItemDisplayType createFormItemDisplayType() {
  return new FormItemDisplayType();
}
origin: Evolveum/midpoint

public FormItemDisplayType clone() {
  FormItemDisplayType object = new FormItemDisplayType();
  PrismContainerValue value = asPrismContainerValue().clone();
  object.setupContainerValue(value);
  return object;
}
origin: Evolveum/midpoint

public FormItemDisplayType color(String value) {
  setColor(value);
  return this;
}
origin: Evolveum/midpoint

@Override
public boolean equals(Object object) {
  if (!(object instanceof FormItemDisplayType)) {
    return false;
  }
  FormItemDisplayType other = ((FormItemDisplayType) object);
  return asPrismContainerValue().equivalent(other.asPrismContainerValue());
}
origin: Evolveum/midpoint

public com.evolveum.prism.xml.ns._public.types_3.PolyStringType beginHelp() {
  com.evolveum.prism.xml.ns._public.types_3.PolyStringType value = new com.evolveum.prism.xml.ns._public.types_3.PolyStringType();
  help(value);
  return value;
}
origin: Evolveum/midpoint

public com.evolveum.prism.xml.ns._public.types_3.PolyStringType beginLabel() {
  com.evolveum.prism.xml.ns._public.types_3.PolyStringType value = new com.evolveum.prism.xml.ns._public.types_3.PolyStringType();
  label(value);
  return value;
}
origin: Evolveum/midpoint

public com.evolveum.prism.xml.ns._public.types_3.PolyStringType beginPluralLabel() {
  com.evolveum.prism.xml.ns._public.types_3.PolyStringType value = new com.evolveum.prism.xml.ns._public.types_3.PolyStringType();
  pluralLabel(value);
  return value;
}
origin: Evolveum/midpoint

clone.display = ((this.display == null)?null:((this.getDisplay() == null)?null:this.getDisplay().clone()));
origin: Evolveum/midpoint

public FormItemDisplayType cssClass(String value) {
  setCssClass(value);
  return this;
}
origin: Evolveum/midpoint

public IconType beginIcon() {
  IconType value = new IconType();
  icon(value);
  return value;
}
origin: Evolveum/midpoint

@XmlElement(name = "maxSize")
public BigInteger getMaxSize() {
  return PrismForJAXBUtil.getPropertyValue(asPrismContainerValue(), F_MAX_SIZE, BigInteger.class);
}
origin: Evolveum/midpoint

public FormItemDisplayType help(String value) {
  return help(com.evolveum.prism.xml.ns._public.types_3.PolyStringType.fromOrig(value));
}
origin: Evolveum/midpoint

public FormItemDisplayType label(String value) {
  return label(com.evolveum.prism.xml.ns._public.types_3.PolyStringType.fromOrig(value));
}
origin: Evolveum/midpoint

public FormItemDisplayType pluralLabel(String value) {
  return pluralLabel(com.evolveum.prism.xml.ns._public.types_3.PolyStringType.fromOrig(value));
}
origin: Evolveum/midpoint

/**
 * Creates a new {@code AbstractFormItemType} instance by deeply copying a given {@code AbstractFormItemType} instance.
 * 
 * 
 * @param o
 *     The instance to copy.
 * @throws NullPointerException
 *     if {@code o} is {@code null}.
 */
public AbstractFormItemType(final AbstractFormItemType o) {
  // CC-XJC Version 2.0 Build 2011-09-16T18:27:24+0000
  super();
  if (o == null) {
    throw new NullPointerException("Cannot create a copy of 'AbstractFormItemType' from 'null'.");
  }
  // CBuiltinLeafInfo: java.lang.String
  this.name = ((o.name == null)?null:o.getName());
  // CBuiltinLeafInfo: java.lang.String
  this.description = ((o.description == null)?null:o.getDescription());
  // CClassInfo: com.evolveum.midpoint.xml.ns._public.common.common_3.VariableBindingDefinitionType
  this.binding = ((o.binding == null)?null:((o.getBinding() == null)?null:o.getBinding().clone()));
  // CClassInfo: com.evolveum.midpoint.xml.ns._public.common.common_3.FormItemDisplayType
  this.display = ((o.display == null)?null:((o.getDisplay() == null)?null:o.getDisplay().clone()));
  // CBuiltinLeafInfo: java.lang.String
  this.widget = ((o.widget == null)?null:o.getWidget());
  // CClassInfo: com.evolveum.midpoint.xml.ns._public.common.common_3.FormItemValidationType
  this.validation = ((o.validation == null)?null:((o.getValidation() == null)?null:o.getValidation().clone()));
}
origin: Evolveum/midpoint

/**
 * Create an instance of {@link FormItemDisplayType }
 * 
 */
public FormItemDisplayType createFormItemDisplayType() {
  return new FormItemDisplayType();
}
origin: Evolveum/midpoint

@Override
public String toString() {
  return asPrismContainerValue().toString();
}
origin: Evolveum/midpoint

/**
 * Create an instance of {@link FormItemDisplayType }
 * 
 */
public FormItemDisplayType createFormItemDisplayType() {
  return new FormItemDisplayType();
}
origin: Evolveum/midpoint

@XmlElement(name = "minOccurs")
public String getMinOccurs() {
  return PrismForJAXBUtil.getPropertyValue(asPrismContainerValue(), F_MIN_OCCURS, String.class);
}
origin: Evolveum/midpoint

public FormItemDisplayType beginDisplay() {
  FormItemDisplayType value = new FormItemDisplayType();
  display(value);
  return value;
}
com.evolveum.midpoint.xml.ns._public.common.common_3FormItemDisplayType

Most used methods

    Popular in Java

    • Parsing JSON documents to java classes using gson
    • startActivity (Activity)
    • onCreateOptionsMenu (Activity)
    • scheduleAtFixedRate (ScheduledExecutorService)
    • BufferedImage (java.awt.image)
      The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
    • File (java.io)
      An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
    • SecureRandom (java.security)
      This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
    • JFileChooser (javax.swing)
    • Project (org.apache.tools.ant)
      Central representation of an Ant project. This class defines an Ant project with all of its targets,
    • Scheduler (org.quartz)
      This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
    • Top Vim plugins
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now