Tabnine Logo
SType.suppressPackage
Code IndexAdd Tabnine to your IDE (free)

How to use
suppressPackage
method
in
org.opensingular.form.SType

Best Java code snippets using org.opensingular.form.SType.suppressPackage (Showing top 8 results out of 315)

origin: org.opensingular/singular-form-core

private String suppressPackage(String name) {
  return suppressPackage(name, false);
}
origin: org.opensingular/form-core

private String suppressPackage(String name) {
  return suppressPackage(name, false);
}
origin: org.opensingular/singular-form-core

private void appendNameAndId(Appendable appendable, SType<?> type) throws IOException {
  appendable.append(suppressPackage(type.getName())).append('@').append(Integer.toString(type.getTypeId()));
}
origin: org.opensingular/form-core

private void appendNameAndId(Appendable appendable, SType<?> type) throws IOException {
  appendable.append(suppressPackage(type.getName())).append('@').append(Integer.toString(type.getTypeId()));
}
origin: org.opensingular/form-core

private void debugAttributesDefined(Appendable appendable, int level) {
  attributesDefined.getAttributes().stream().filter(att -> !getLocalTypeOptional(att.getNameSimple())
      .isPresent()).forEach(att -> {
    try {
      pad(appendable, level + 1).append("att ").append(suppressPackage(att.getName()))
          .append(':').append(suppressPackage(att.getSuperType().getName())).append(
          att.isSelfReference() ? " SELF" : "").append('\n');
    } catch (IOException ex) {
      LOGGER.log(Level.SEVERE, ex.getMessage(), ex);
    }
  });
}
origin: org.opensingular/singular-form-core

private void debugAttributesDefined(Appendable appendable, int level) {
  AttributeDefinitionManager.getStaticAttributes(attributesDefined).stream().filter(att -> !getLocalTypeOptional(
      att.getNameSimple()).isPresent()).forEach(att -> {
    try {
      pad(appendable, level + 1).append("att ").append(suppressPackage(att.getName())).append(':').append(
          suppressPackage(att.getSuperType().getName())).append(att.isSelfReference() ? " SELF" : "")
          .append('\n');
    } catch (IOException ex) {
      LOGGER.log(Level.SEVERE, ex.getMessage(), ex);
    }
  });
}
origin: org.opensingular/form-core

private void debugAttributes(Appendable appendable) {
  try {
    Collection<SInstance> attrs = getAttributes();
    if (! attrs.isEmpty()) {
      appendable.append(" {");
      attrs.stream().forEach(attr -> {
        try {
          appendable.append(suppressPackage(attr.getAttributeInstanceInfo().getName(), true)).append("=")
              .append(attr.toStringDisplay()).append("; ");
        } catch (IOException ex) {
          LOGGER.log(Level.SEVERE, ex.getMessage(), ex);
        }
      });
      appendable.append("}");
    }
  } catch (IOException ex) {
    LOGGER.log(Level.SEVERE, ex.getMessage(), ex);
  }
}
origin: org.opensingular/singular-form-core

private void debugAttribute(Appendable appendable, SInstance attr) {
  try {
    if (!attr.getAttributeInstanceInfo().getRef().isResolved()) {
      appendable.append('?');
    }
    appendable.append(suppressPackage(attr.getAttributeInstanceInfo().getName(), true)).append("=")
        .append(attr.toStringDisplay()).append("; ");
  } catch (IOException ex) {
    LOGGER.log(Level.SEVERE, ex.getMessage(), ex);
  }
}
org.opensingular.formSTypesuppressPackage

Popular methods of SType

  • asAtr
  • getNameSimple
  • getName
  • asAtrProvider
  • getAttributeValue
  • isList
    Verificar se o tipo é um tipo lista ( STypeList).
  • getValidators
  • withView
  • asAtrBootstrap
  • getInstanceClass
  • isComposite
    Verificar se o tipo é um tipo composto ( STypeComposite).
  • getDependentTypes
  • isComposite,
  • getDependentTypes,
  • getDictionary,
  • hasAttributeDefinedInHierarchy,
  • isDependentType,
  • isTypeOf,
  • newInstance,
  • addAttribute,
  • addDependentType,
  • addInstanceValidator

Popular in Java

  • Making http post requests using okhttp
  • setRequestProperty (URLConnection)
  • addToBackStack (FragmentTransaction)
  • getSupportFragmentManager (FragmentActivity)
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Reference (javax.naming)
  • JOptionPane (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • CodeWhisperer alternatives
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