Package org.pentaho.reporting.engine.classic.core.metadata

Examples of org.pentaho.reporting.engine.classic.core.metadata.DefaultAttributeMetaData


      else
      {
        attributeBundle = handler.getBundleName();
      }
      prefix = "attribute." + namespacePrefix + '.';
      final DefaultAttributeMetaData metaData = new DefaultAttributeMetaData
          (namespace, attrName, attributeBundle, prefix,
              handler.getPropertyEditor(), handler.getValueType(), handler.isExpert(),
              handler.isPreferred(), handler.isHidden(), handler.isDeprecated(), handler.isMandatory(),
              handler.isComputed(), handler.isTransient(), handler.getValueRole(), handler.isBulk(),
              handler.isDesignTimeValue(), handler.getAttributeCore());
View Full Code Here


      else
      {
        bundleName = this.bundleName;
        prefix = this.prefix + ".attribute." + namespacePrefix + '.';
      }
      final DefaultAttributeMetaData metaData = new DefaultAttributeMetaData
          (namespace, attrName, bundleName, prefix,
              handler.getPropertyEditor(), handler.getValueType(), handler.isExpert(),
              handler.isPreferred(), handler.isHidden(), handler.isDeprecated(),
              handler.isMandatory(), handler.isComputed(), handler.isTransient(), handler.getValueRole(),
              handler.isBulk(), handler.isDesignTimeValue(), handler.getAttributeCore());
View Full Code Here

    assertNull(attrMeta);

    final AttributeRegistry attributeRegistry =
        ElementTypeRegistry.getInstance().getAttributeRegistry(LabelType.INSTANCE);

    final DefaultAttributeMetaData m = new DefaultAttributeMetaData
        ("namespace", "Name", BUNDLE_LOCATION, "prefix",
            String.class, false, ClassicEngineBoot.computeCurrentVersionId());
    attributeRegistry.putAttributeDescription(m);

    final AttributeMetaData attributeDescription = metaData.getAttributeDescription("namespace", "Name");
View Full Code Here

  public void initialize(final SubSystem subSystem) throws ModuleInitializeException
  {
    final String bundleLocation = "org.pentaho.reporting.engine.classic.core.testsupport.metadata";
    final String keyPrefix = "attribute.test-run.";
    final DefaultAttributeMetaData metaData =
        new DefaultAttributeMetaData("test-run", "test-value", bundleLocation, keyPrefix, Object.class, false, 0);

    final ElementMetaData[] types = ElementTypeRegistry.getInstance().getAllElementTypes();
    for (int i = 0; i < types.length; i++)
    {
      final ElementMetaData type = types[i];
View Full Code Here

      else
      {
        bundleName = this.bundleName;
        prefix = this.prefix + ".attribute." + namespacePrefix + '.';
      }
      final DefaultAttributeMetaData metaData = new DefaultAttributeMetaData
          (namespace, attrName, bundleName, prefix,
              handler.getPropertyEditor(), handler.getValueType(), handler.isExpert(),
              handler.isPreferred(), handler.isHidden(), handler.isDeprecated(),
              handler.isMandatory(), handler.isComputed(), handler.isTransient(), handler.getValueRole(),
              handler.isBulk(), handler.isDesignTimeValue(), handler.getAttributeCore(),
View Full Code Here

      else
      {
        attributeBundle = handler.getBundleName();
      }
      prefix = "attribute." + namespacePrefix + '.';
      final DefaultAttributeMetaData metaData = new DefaultAttributeMetaData
          (namespace, attrName, attributeBundle, prefix,
              handler.getPropertyEditor(), handler.getValueType(), handler.isExpert(),
              handler.isPreferred(), handler.isHidden(), handler.isDeprecated(), handler.isMandatory(),
              handler.isComputed(), handler.isTransient(), handler.getValueRole(), handler.isBulk(),
              handler.isDesignTimeValue(), handler.getAttributeCore(), handler.isExperimental(),
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.engine.classic.core.metadata.DefaultAttributeMetaData

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.