Examples of SingleValueAnnotationEvaluatorAndModifier


Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

public class MaxLengthMetadataDescriptor extends StringSpecificMetadataDescriptor {

  public MaxLengthMetadataDescriptor() {
    super(
            "MaxLength",
      new SingleValueAnnotationEvaluatorAndModifier(
                    "org.nakedobjects.applib.annotation.MaxLength",
                    MetadataDescriptorKind.INTEGER)
        );
  }
View Full Code Here

Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

public class TypicalLengthMetadataDescriptor extends MetadataDescriptor {

  public TypicalLengthMetadataDescriptor() {
    super(
            "TypicalLength",
      new SingleValueAnnotationEvaluatorAndModifier(
                    "org.nakedobjects.applib.annotation.TypicalLength",
                    MetadataDescriptorKind.INTEGER));
  }
View Full Code Here

Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

public class NamedMetadataDescriptor extends MetadataDescriptor {

  public NamedMetadataDescriptor() {
    super(
            "Named"
      new SingleValueAnnotationEvaluatorAndModifier(
                    "org.nakedobjects.applib.annotation.Named",
                    MetadataDescriptorKind.STRING));
  }
View Full Code Here

Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

public class PluralMetadataDescriptor extends MetadataDescriptor {

  public PluralMetadataDescriptor() {
    super(
            "Plural"
      new SingleValueAnnotationEvaluatorAndModifier(
                "org.nakedobjects.applib.annotation.Plural",
                MetadataDescriptorKind.STRING));
  }
View Full Code Here

Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

public class BusinessKeyMetadataDescriptor extends MetadataDescriptor {

  public BusinessKeyMetadataDescriptor() {
    super(
            "BusinessKey"
      new SingleValueAnnotationEvaluatorAndModifier(
                "org.nakedobjects.applib.annotation.BusinessKey",
                MetadataDescriptorKind.STRING));
  }
View Full Code Here

Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier


    public TypeOfMetadataDescriptor() {
    super(
                "TypeOf",
                new SingleValueAnnotationEvaluatorAndModifier(
                    "org.nakedobjects.applib.annotation.TypeOf",
                    MetadataDescriptorKind.CLASS_NAME));
  }
View Full Code Here

Examples of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

public class DescribedAsMetadataDescriptor extends MetadataDescriptor {

  public DescribedAsMetadataDescriptor() {
    super(
            "DescribedAs",
      new SingleValueAnnotationEvaluatorAndModifier(
                "org.nakedobjects.applib.annotation.DescribedAs",
                MetadataDescriptorKind.LONG_STRING)
        );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.