Tabnine Logo
sk.seges.sesam.core.pap.structure
Code IndexAdd Tabnine to your IDE (free)

How to use sk.seges.sesam.core.pap.structure

Best Java code snippets using sk.seges.sesam.core.pap.structure (Showing top 20 results out of 315)

origin: sk.seges.sesam/sesam-annotation-core-support

@Override
public String toString() {
  if (isValid()) {
    return group + "." + artifact + "." + locationType.getName() + "." + 
        (business == null ? "" : (business + ".")) + layerType.getName() + (type == null ? "" : ("." + type));
  }
  return notParsedName;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public DefaultPackageValidator moveTo(ImplementationType implementationType) {
  if (isValid()) {
    //TODO
    this.type = implementationType.getName();
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public DefaultPackageValidator moveTo(LayerType layerType) {
  if (isValid()) {
    this.layerType = layerType;
  }
  return this;
}
 
origin: sk.seges.sesam/sesam-annotations-support

  @Override
  public PackageValidator moveTo(SubPackageType subPackageType) {
    processPackage();
    if (subPackageType instanceof LocationType) {
      return moveTo((LocationType)subPackageType);
    }
    if (subPackageType instanceof LayerType) {
      return moveTo((LayerType)subPackageType);
    }
    return this;
  }
}
origin: sk.seges.sesam/sesam-annotation-core-support

public LocationType getLocationType() {
  processPackage();
  return locationType;
}
public LayerType getLayerType() {
origin: sk.seges.sesam/sesam-annotation-core-support

  @Override
  public DefaultPackageValidator get(MutableDeclaredType inputClass) {
    return new DefaultPackageValidator(inputClass);
  }    
}
origin: sk.seges.sesam/sesam-annotations-support

@Override
public String toString() {
  if (isValid()) {
    return group + "." + artifact + "." + locationType.getName() + "." + 
        (business == null ? "" : (business + ".")) + layerType.getName() + (type == null ? "" : ("." + type));
  }
  return notParsedName;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public DefaultPackageValidator append(ImplementationType type) {
  if (isValid()) {
    this.type += "." + type.getName();
  } else {
    this.notParsedName += "." + type.getName();
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotations-support

public DefaultPackageValidator moveTo(LocationType locationType) {
  if (isValid()) {
    this.locationType = locationType;
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotations-support

public LocationType getLocationType() {
  processPackage();
  return locationType;
}
public LayerType getLayerType() {
origin: sk.seges.sesam/sesam-annotations-support

  @Override
  public PackageValidator get(NamedType inputClass) {
    return new DefaultPackageValidator(inputClass);
  }    
}
origin: sk.seges.sesam/sesam-annotations-support

public DefaultPackageValidator append(ImplementationType type) {
  if (isValid()) {
    this.type += "." + type.getName();
  } else {
    this.notParsedName += "." + type.getName();
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public DefaultPackageValidator setType(String type) {
  if (isValid()) {
    this.type += "." + type;
  } else {
    this.notParsedName += "." + type;
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public boolean isValid() {
  processPackage();
  return group != null && artifact != null && locationType != null && layerType != null;
}
 
origin: sk.seges.sesam/sesam-annotations-support

@Override
public PackageValidator get(String packageName) {
  return new DefaultPackageValidator(packageName);
}
origin: sk.seges.sesam/sesam-annotations-support

public DefaultPackageValidator setType(String type) {
  if (isValid()) {
    this.type += "." + type;
  } else {
    this.notParsedName += "." + type;
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public String getGroup() {
  processPackage();
  return group;
}
 
origin: sk.seges.sesam/sesam-annotations-support

public DefaultPackageValidator moveTo(LayerType layerType) {
  if (isValid()) {
    this.layerType = layerType;
  }
  return this;
}
 
origin: sk.seges.sesam/sesam-annotation-core-support

public DefaultPackageValidator moveTo(LocationType locationType) {
  if (isValid()) {
    this.locationType = locationType;
  }
  return this;
}
origin: sk.seges.sesam/sesam-annotation-core-support

public DefaultPackageValidator clearType() {
  if (isValid()) {
    this.type = null;
  }
  return this;
}
 
sk.seges.sesam.core.pap.structure

Most used classes

  • DefaultPackageValidatorProvider
  • DefaultPackageValidator$ImplementationType
  • DefaultPackageValidator$LayerType
  • DefaultPackageValidator$LocationType
  • DefaultPackageValidator
  • PackageValidatorProvider
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