Package com.halware.nakedide.eclipse.ext.annot.ast

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


public class TypicalLengthMetadataDescriptor extends MetadataDescriptor {

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

public class NamedMetadataDescriptor extends MetadataDescriptor {

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

public class PluralMetadataDescriptor extends MetadataDescriptor {

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

public class BusinessKeyMetadataDescriptor extends MetadataDescriptor {

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


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

public class DescribedAsMetadataDescriptor extends MetadataDescriptor {

  public DescribedAsMetadataDescriptor() {
    super(
            "DescribedAs",
      new SingleValueAnnotationEvaluatorAndModifier(
                "org.nakedobjects.applib.annotation.DescribedAs",
                MetadataDescriptorKind.LONG_STRING)
        );
  }
View Full Code Here

TOP

Related Classes of com.halware.nakedide.eclipse.ext.annot.ast.SingleValueAnnotationEvaluatorAndModifier

Copyright © 2018 www.massapicom. 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.