Examples of removeProperty()


Examples of ca.nengo.config.impl.ConfigurationImpl.removeProperty()

  /**
   * @return Custom Configuration (to more cleanly handle properties in 1D)
   */
  public Configuration getConfiguration() {
    ConfigurationImpl result = ConfigUtil.defaultConfiguration(this);
    result.removeProperty("units");
    result.removeProperty("units1D");
    result.removeProperty("values");
    result.removeProperty("values1D");
    result.removeProperty("labels");
   
View Full Code Here

Examples of com.arjuna.common.util.propertyservice.PropertyManager.removeProperty()

    final PropertyManager propertyManager = ModulePropertyManager.getPropertyManager(ModulePropertyManager.CORE_MODULE) ;
    if (propertyManager != null)
    {
      if (redeliverDlsServiceOn == null)
      {
        propertyManager.removeProperty(Environment.REDELIVER_DLS_SERVICE_ON) ;
      }
      else
      {
        propertyManager.setProperty(Environment.REDELIVER_DLS_SERVICE_ON, redeliverDlsServiceOn) ;
      }
View Full Code Here

Examples of com.exedosoft.plat.gene.jquery.PropertyManager.removeProperty()

    }
    DOBOProperty dop = DOBOProperty.getDOBOPropertyByID(propertyInstance.getUid());
    DOBO thisBO = DOBO.getDOBOByID(instance.getUid());
   
    PropertyManager pm = new PropertyManager();
    pm.removeProperty(thisBO, dop);
    return DEFAULT_FORWARD;
  }

}
View Full Code Here

Examples of com.google.appengine.api.datastore.Entity.removeProperty()

          String key = iterator.next();
          keyList.add(key);
        }
      }
      int index = RandomUtils.nextInt(keyList.size());
      entity.removeProperty((String) keyList.get(index));

      list.add(entity);

    }
    DatastoreService service = DatastoreServiceFactory.getDatastoreService();
View Full Code Here

Examples of com.google.javascript.rhino.jstype.ObjectType.removeProperty()

          ObjectType objType = type.toObjectType();
          if (objType != null) {
            Node pNode = objType.getPropertyNode(propName);
            if (pNode != null && srcName.equals(pNode.getSourceFileName())) {
              typeRegistry.unregisterPropertyOnType(propName, type);
              objType.removeProperty(propName);
            }
          }
        }
      }
    }
View Full Code Here

Examples of com.linkedin.helix.DataAccessor.removeProperty()

        "key0");
    config = accessor.getProperty(InstanceConfig.class, PropertyType.CONFIGS,
        ConfigScopeProperty.PARTICIPANT.toString(), "key0");
    AssertJUnit.assertEquals("id1", config.getId());

    accessor.removeProperty(PropertyType.CONFIGS, ConfigScopeProperty.PARTICIPANT.toString(),
        "key0");
    config = accessor.getProperty(InstanceConfig.class, PropertyType.CONFIGS,
        ConfigScopeProperty.PARTICIPANT.toString(), "key0");
    AssertJUnit.assertNull(config);
View Full Code Here

Examples of com.orientechnologies.orient.core.metadata.schema.OClass.removeProperty()

      if (db.getMetadata().getSchema().getClass(urlParts[2]) == null)
        throw new IllegalArgumentException("Invalid class '" + urlParts[2] + "'");

      final OClass cls = db.getMetadata().getSchema().getClass(urlParts[2]);

      cls.removeProperty(urlParts[3]);

      db.getMetadata().getSchema().save();

      sendTextContent(iRequest, OHttpUtils.STATUS_OK_CODE, "OK", null, OHttpUtils.CONTENT_TEXT_PLAIN, null);
View Full Code Here

Examples of com.sk89q.util.yaml.YAMLProcessor.removeProperty()

                            i2.remove();
                            String sender = sess.getUniqueName();
                            if (sender != null) {
                                YAMLProcessor processor = getUserConfiguration(getType(parent.getKey()), sender, false);
                                if (processor != null) {
                                    processor.removeProperty(sess.getClass().getCanonicalName().replaceAll("\\.", "/"));
                                }
                            }
                        }
                    }
View Full Code Here

Examples of com.sun.appserv.management.config.AuditModuleConfig.removeProperty()

            AuditModuleConfig module = (AuditModuleConfig)modules.get((String)handlerCtx.getInputValue("Name"));
            ArrayList removeProps = (ArrayList)handlerCtx.getInputValue("RemoveProps");
            Map addProps = (Map)handlerCtx.getInputValue("AddProps");
            String[] remove = (String[])removeProps.toArray(new String[ removeProps.size()]);
            for(int i=0; i<remove.length; i++){
                module.removeProperty(remove[i]);
            }
            if(addProps != null ){
                Iterator additer = addProps.keySet().iterator();
                while(additer.hasNext()){
                    Object key = additer.next();
View Full Code Here

Examples of com.sun.appserv.management.config.AuthRealmConfig.removeProperty()

            AuthRealmConfig realm = (AuthRealmConfig)realms.get((String)handlerCtx.getInputValue("Name"));
            ArrayList removeProps = (ArrayList)handlerCtx.getInputValue("RemoveProps");
            Map addProps = (Map)handlerCtx.getInputValue("AddProps");
            String[] remove = (String[])removeProps.toArray(new String[ removeProps.size()]);
            for(int i=0; i<remove.length; i++){
                realm.removeProperty(remove[i]);
            }
            if(addProps != null ){
                Iterator additer = addProps.keySet().iterator();
                while(additer.hasNext()){
                    Object key = additer.next();
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.