Tabnine Logo
br.com.objectos.way.code
Code IndexAdd Tabnine to your IDE (free)

How to use br.com.objectos.way.code

Best Java code snippets using br.com.objectos.way.code (Showing top 20 results out of 315)

origin: br.com.objectos/way-code-apt

@Override
protected TypeInfoTypeElementCore compute() {
 TypeParameterInfoMap typeParameterInfoMap = newTypeParameterInfoMap();
 return TypeInfoTypeElementCore.builder()
   .kind(kind())
   .packageInfo(packageInfo())
   .accessInfo(accessInfo())
   .name(name(typeParameterInfoMap))
   .typeParameterInfoMap(typeParameterInfoMap)
   .build();
}
origin: br.com.objectos.way/code-testing

public MethodInfo build() {
 return TestingMethodInfo.builder()
   .accessInfo(accessInfo)
   .modifierInfoSet(modifierInfoSet)
   .name(name)
   .annotationInfoList(annotationInfoList)
   .returnTypeInfo(returnTypeInfo)
   .parameterInfoList(parameterInfoList)
   .defaultValueInfo(defaultValueInfo)
   .varargs(varargs)
   .build();
}
origin: br.com.objectos.way/code-testing

public AnnotationInfo build() {
 return TestingAnnotationInfo.builder()
   .packageInfo(packageInfo)
   .accessInfo(accessInfo)
   .name(name)
   .annotationValueInfoMap(AnnotationValueInfoMap.mapOf(annotationValueInfoList))
   .enclosingSimpleTypeInfoOfNullable(enclosingTypeInfo)
   .annotationInfoList(annotationInfoList)
   .build();
}
origin: br.com.objectos/way-code-apt

@Override
public AnnotationValueInfo visitDouble(double d, String p) {
 kind = AnnotationValueKind.PRIMITIVE_DOUBLE;
 return AnnotationValueInfo.builder()
   .name(p)
   .kind(kind)
   .value(d)
   .build();
}
origin: br.com.objectos.way/code-testing

private static SuperTypeInfo superTypeInfo(TypeInfo typeInfo) {
 return TestingSuperTypeInfo.builder()
   .annotationInfoList(typeInfo.annotationInfoList())
   .superTypeInfo(typeInfo.superTypeInfo())
   .interfaceInfoMap(typeInfo.interfaceInfoMap())
   .methodInfoList(typeInfo.methodInfoList())
   .build();
}
origin: br.com.objectos.way/code-testing

public TypeParameterInfo build() {
 TypeParameterInfoObject delegate = TestingTypeParameterInfoObject.builder()
   .typeVariableInfo(typeVariableInfo())
   .packageInfo(packageInfo())
   .type(type())
   .typeParameterInfoList(typeParameterInfoList)
   .build();
 return new ForwardingTypeParameterInfo(delegate, typeInfo);
}
origin: br.com.objectos/way-code-testing

@Override
public TypeParameterInfo build() {
 TypeParameterInfoObject delegate = TypeParameterInfoObject.builder()
   .typeVariableInfo(typeVariableInfo())
   .packageInfo(packageInfo())
   .type(type())
   .typeParameterInfoList(typeParameterInfoList)
   .build();
 return new ForwardingTypeParameterInfo(delegate, typeInfo);
}
origin: br.com.objectos.way/code-testing

@Override
public SimpleTypeInfo toSimpleTypeInfo() {
 return TestingSimpleTypeInfo.builder()
   .kind(SimpleTypeInfoKind.TYPE)
   .packageInfoOfNullable(packageInfo())
   .nameInfo(nameInfo())
   .typeParameterInfoList(typeParameterInfoMap().list())
   .build();
}
origin: br.com.objectos.way/code-testing

@Override
protected Configuration configuration() {
 return Configuration.builder()
   .addAllAnnotationTypesByName(annotationTypeSet)
   .addMethodInfoArtifactGenerator(this::methodInfo)
   .addPackageInfoArtifactGenerator(this::packageInfo)
   .addTypeInfoArtifactGenerator(this::typeInfo)
   .listener(new TestingProcessorListener(subtypeMap))
   .build();
}
origin: br.com.objectos/way-code

public FieldInfo toFieldInfo() {
 return FieldInfo.builder()
   .simpleTypeInfo(simpleTypeInfo())
   .name(name())
   .build();
}
origin: br.com.objectos/way-code-testing

@Override
public MethodInfo build() {
 return MethodInfo.newPojo()
   .accessInfo(accessInfo)
   .modifierInfoSet(modifierInfoSet)
   .name(name)
   .annotationInfoMap(AnnotationInfoMap.mapOf(annotationInfoList))
   .returnTypeInfo(returnTypeInfo)
   .parameterInfoList(parameterInfoList)
   .build();
}
origin: br.com.objectos/way-code-testing

@Override
public SourceFileInfo build() {
 return SourceFileInfo.newPojo()
   .packageInfo(packageInfo)
   .importInfoMap(ImportInfoMap.mapOf(importInfoList))
   .typeInfoMap(TypeInfoMap.mapOf(typeInfoList))
   .build();
}
origin: br.com.objectos.way/code-testing

@Override
public SimpleTypeInfo simpleTypeInfo() {
 return TestingSimpleTypeInfo.builder()
   .kind(SimpleTypeInfoKind.TYPE)
   .packageInfoOf(packageInfo())
   .nameInfo(nameInfo())
   .typeParameterInfoList()
   .build();
}
origin: br.com.objectos.way/code-testing

public SimpleTypeInfo build() {
 return new ForwardingSimpleTypeInfo(
   TestingSimpleTypeInfo.builder()
     .kind(kind)
     .packageInfoOfNullable(packageInfo)
     .nameInfo(name)
     .typeParameterInfoList(typeParameterInfoList)
     .build(),
   typeInfo);
}
origin: br.com.objectos.way/code-testing

public FieldInfo build() {
 return TestingFieldInfo.builder()
   .annotationInfoList(annotationInfoList)
   .simpleTypeInfo(simpleTypeInfo)
   .name(name)
   .build();
}
origin: br.com.objectos/way-code-apt

@Override
public AnnotationValueInfo visitFloat(float f, String p) {
 kind = AnnotationValueKind.PRIMITIVE_FLOAT;
 return AnnotationValueInfo.builder()
   .name(p)
   .kind(kind)
   .value(f)
   .build();
}
origin: br.com.objectos/way-code-apt

@Override
public AnnotationValueInfo visitBoolean(boolean b, String p) {
 kind = AnnotationValueKind.PRIMITIVE_BOOLEAN;
 return AnnotationValueInfo.builder()
   .name(p)
   .kind(kind)
   .value(b)
   .build();
}
origin: br.com.objectos/way-code-apt

@Override
public AnnotationValueInfo visitChar(char c, String p) {
 kind = AnnotationValueKind.PRIMITIVE_CHAR;
 return AnnotationValueInfo.builder()
   .name(p)
   .kind(kind)
   .value(c)
   .build();
}
origin: br.com.objectos/way-code-apt

@Override
public AnnotationValueInfo visitLong(long i, String p) {
 kind = AnnotationValueKind.PRIMITIVE_LONG;
 return AnnotationValueInfo.builder()
   .name(p)
   .kind(kind)
   .value(i)
   .build();
}
origin: br.com.objectos/way-code-apt

@Override
public AnnotationValueInfo visitString(String s, String p) {
 kind = AnnotationValueKind.STRING;
 return AnnotationValueInfo.builder()
   .name(p)
   .kind(kind)
   .value(s)
   .build();
}
br.com.objectos.way.code

Most used classes

  • SimpleTypeInfo
  • TypeInfo
  • PackageInfo
  • TypeParameterInfo
  • TypeParameterInfoMap
  • AnnotationValueInfoMap,
  • Artifact,
  • InterfaceInfoMap,
  • MethodInfo,
  • NameInfo,
  • AnnotationInfo,
  • AnnotationValueInfo,
  • Configuration,
  • ConstructorInfo,
  • FieldInfo,
  • ParameterInfo,
  • AnnotationInfoMap,
  • AnnotationValueKind,
  • Artifact$Builder
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