Examples of properties()


Examples of ch.ralscha.extdirectspring.annotation.ExtDirectDocReturn.properties()

              .info("Documentation: skip generation of parameters, params size is different from descriptions size");
        }
      }
      ExtDirectDocReturn docReturn = documentation.returnMethod();
      if (null != docReturn) {
        String[] properties = docReturn.properties();
        String[] descriptions = docReturn.descriptions() == null ? new String[properties.length] : docReturn
            .descriptions();
        if (properties.length == descriptions.length) {
          for (int i = 0; i < properties.length; i++) {
            actionDoc.getReturnMethod().put(properties[i],
View Full Code Here

Examples of co.pishfa.accelerate.initializer.model.InitEntity.properties()

      addInitProperties(parent, initEntityMetaData);
    }

    InitEntity initEntity = entityClass.getAnnotation(InitEntity.class);
    if (initEntity != null) {
      for (InitProperty initProperty : initEntity.properties()) {
        initEntityMetaData.addProperty(processInitProperty(null, initProperty, entityClass));
      }
    }

    for (Field field : entityClass.getDeclaredFields()) {
View Full Code Here

Examples of com.adobe.dp.css.InlineRule.properties()

      cls = className + (count++);
    }
    classByProps.put(props, cls);
    SelectorRule rule = css.getRuleForSelector(selector, true);
    InlineRule p = props.getProperties().getPropertySet();
    Iterator ps = p.properties();
    while (ps.hasNext()) {
      String pn = (String) ps.next();
      CSSValue pv = p.get(pn);
      rule.set(pn, pv);
    }
View Full Code Here

Examples of com.fasterxml.jackson.databind.deser.BeanDeserializerBase.properties()

            JsonDeserializer<?> replacementDelegatee = modifyDeserializer(config, beanDesc, delegatee);
            return deserializer.replaceDelegatee(replacementDelegatee);
        } else if (deserializer instanceof BeanDeserializerBase) {
            BeanDeserializerBase beanDeserializer = (BeanDeserializerBasedeserializer;
            ObjectNode fieldDefaults = config.getNodeFactory().objectNode();
            Iterator<SettableBeanProperty> propertyIterator = beanDeserializer.properties();
            while (propertyIterator.hasNext()) {
                SettableBeanProperty prop = propertyIterator.next();
                Class<?> declaringClass = prop.getMember().getDeclaringClass();
                String canonicalClassName = declaringClass.getCanonicalName();
                if ((canonicalClassName != null) && globalDefaults.hasPath(canonicalClassName)) {
View Full Code Here

Examples of com.google.gwt.inject.client.GinModules.properties()

  private void getPropertyNamesFromInjectorInterface(Class<?> ginjectorType,
      Set<String> propertyNames) {
    GinModules ginModulesAnnotation = ginjectorType.getAnnotation(GinModules.class);
    if (ginModulesAnnotation != null) {
      propertyNames.addAll(Arrays.asList(ginModulesAnnotation.properties()));
    }

    for (Class<?> ancestor : ginjectorType.getInterfaces()) {
      getPropertyNamesFromInjectorInterface(ancestor, propertyNames);
    }
View Full Code Here

Examples of com.google.inject.persist.jpa.AmbariJpaPersistModule.properties()

      case IN_MEMORY:
        properties.setProperty(JDBC_URL, Configuration.JDBC_IN_MEMORY_URL);
        properties.setProperty(JDBC_DRIVER, Configuration.JDBC_IN_MEMROY_DRIVER);
        properties.setProperty(DDL_GENERATION, DROP_AND_CREATE);
        properties.setProperty(THROW_EXCEPTIONS, "true");
        jpaPersistModule.properties(properties);
        return jpaPersistModule;
      case REMOTE:
        properties.setProperty(JDBC_URL, configuration.getDatabaseUrl());
        properties.setProperty(JDBC_DRIVER, configuration.getDatabaseDriver());
        break;
View Full Code Here

Examples of com.google.inject.persist.jpa.AmbariJpaPersistModule.properties()

    properties.setProperty(DDL_GENERATION_MODE, DDL_BOTH_GENERATION);
    properties.setProperty(CREATE_JDBC_DDL_FILE, "DDL-create.jdbc");
    properties.setProperty(DROP_JDBC_DDL_FILE, "DDL-drop.jdbc");

    jpaPersistModule.properties(properties);

    return jpaPersistModule;
  }

  private void installFactories() {
View Full Code Here

Examples of com.google.inject.persist.jpa.JpaPersistModule.properties()

    JpaPersistModule jpaPersistModule = new JpaPersistModule(configuration.getPersistenceType().getUnitName());
    if (configuration.getPersistenceType() == PersistenceType.POSTGRES) {
      Properties properties = new Properties();
      properties.setProperty("javax.persistence.jdbc.user", configuration.getDatabaseUser());
      properties.setProperty("javax.persistence.jdbc.password", configuration.getDatabasePassword());
      jpaPersistModule.properties(properties);
    }

    install(jpaPersistModule);

View Full Code Here

Examples of com.googlecode.wicketwebbeans.model.api.JBean.properties()

            String name = param.getName();
            if (name.equals(BeanMetaData.PARAM_ACTIONS)) {
                jbean.actions( processActions(param.getValues()) );
            }
            else if (name.equals(BeanMetaData.PARAM_PROPS)) {
                jbean.properties( processProps(param.getValues()) );
            }
            else if (param.getName().equals(BeanMetaData.PARAM_TABS)) {
                jbean.tabs( processTabs(param.getValues()) );
            }
            else {
View Full Code Here

Examples of com.googlecode.wicketwebbeans.model.api.JTab.properties()

            String elementName = value.getValue();
            JTab jtab = new JTab(elementName);
            jtabs.add(jtab);
            for (ParameterAST param : value.getParameters()) {
                if (param.getName().equals(BeanMetaData.PARAM_PROPS)) {
                    jtab.properties( processProps(param.getValues()) );
                }
                else {
                    jtab.add(param.getName(), param.getValuesAsStrings());
                }
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.