Examples of removeProperty()


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

                Map<String, WebServiceEndpointConfig> wsecMap =
                        config.getWebServiceEndpointConfigMap();
                wsec = wsecMap.get(pureWebServiceName);
                for (int i=0; i<registryLocations.length; i++){
                    String jndiname = registryLocations[i];
                    config.removeProperty(jndiname+"__"+
                            underScoredWebServiceName);
                }
               
            }
        }
View Full Code Here

Examples of com.sun.star.beans.XPropertyContainer.removeProperty()

            udpc.addProperty("Foo", PropertyAttribute.REMOVEABLE, "bar");
            udpc.addProperty("Removed", PropertyAttribute.REMOVEABLE, "bar");
            // #i94175#: empty property name is valid ODF 1.1
            udpc.addProperty("", PropertyAttribute.REMOVEABLE, "eeeeek");
            try {
                udpc.removeProperty("Info 1");
                udpc.removeProperty("Removed");
            } catch (UnknownPropertyException e) {
                assure("removeProperty failed", false);
            }
View Full Code Here

Examples of com.tensegrity.palo.gwt.core.client.models.cubeviews.XAxisHierarchy.removeProperty()

                hierarchy.setActiveAlias(oldAlias);
                hierarchy.setActiveSubset(oldSubset);                     
                hierarchy.setVisibleElements(oldVisibleElements);
                hierarchy.setSelectedElement(oldSelectedElement);
                if (oldPaths == null) {
                  hierarchy.removeProperty("filterPaths");
                } else {
                  hierarchy.addProperty("filterPaths", oldPaths);
                }
                if (oldAliasFormat == null) {
                  hierarchy.removeProperty("aliasFormat");
View Full Code Here

Examples of com.tinkerpop.blueprints.Edge.removeProperty()

            assertEquals(edge.getPropertyKeys().size(), 2);
            assertEquals(edge.getProperty("blah"), "dah");
            edge.setProperty("blah", "blue");
            assertEquals(edge.getPropertyKeys().size(), 2);
            assertEquals(edge.getProperty("blah"), "blue");
            assertEquals(edge.removeProperty("blah"), "blue");
            assertEquals(edge.getPropertyKeys().size(), 1);
        }

        batch.shutdown();
View Full Code Here

Examples of com.tinkerpop.blueprints.Element.removeProperty()

        if (graphElementDeleted != null) {
            if (keysToDelete != null && keysToDelete.length() > 0) {
                // just delete keys from the element
                for (int ix = 0; ix < keysToDelete.length(); ix++) {
                    graphElementDeleted.removeProperty(keysToDelete.optString(ix));
                }
            } else {
                // delete the whole element
                if (elementType.equals(Tokens.VERTEX)) {
                    graph.removeVertex((Vertex) graphElementDeleted);
View Full Code Here

Examples of com.tinkerpop.blueprints.Vertex.removeProperty()

            vertex.setProperty("c", 4);
            assertEquals(vertex.getProperty("a"), 1);
            assertEquals(vertex.getProperty("b"), 3);
            assertEquals(vertex.getProperty("c"), 4);
            assertEquals(vertex.getPropertyKeys().size(), 3);
            assertEquals(vertex.removeProperty("a"), 1);
            assertNull(vertex.getProperty("a"));
            assertEquals(vertex.getProperty("b"), 3);
            assertEquals(vertex.getProperty("c"), 4);
            assertEquals(vertex.getPropertyKeys().size(), 2);
            vertexIds.add((Long) vertex.getId());
View Full Code Here

Examples of com.volantis.shared.dependency.DependencyContext.removeProperty()

                if (xmlPipelineContext != null) {
                    final DependencyContext dependencyContext =
                        xmlPipelineContext.getDependencyContext();
                    if (dependencyContext != null) {
                        content = (HttpContent)
                            dependencyContext.removeProperty(keyUrl);
                    }
                }
                if (content == null) {
                    try {
                        // This path requests the page through the cache.
View Full Code Here

Examples of de.mhus.lib.config.IConfig.removeProperty()

     
      System.out.println("--------------------------------------------------");
      dialect.createStructure(cstr, con, null);
      dialect.createStructure(cstr, con, null);
     
      cfield.removeProperty("default");
     
      System.out.println("--------------------------------------------------");
      dialect.createStructure(cstr, con, null);
      dialect.createStructure(cstr, con, null);
     
View Full Code Here

Examples of de.mhus.lib.form2.DataSource.removeProperty()

  @Override
  public void removeProperty(String name) throws MException {
    DataSource pack = getPack(name);
    name = fixName(pack,name);
    pack.removeProperty(name);
  }

  @Override
  public void setPropertyData(String name, Object value) throws MException {
    DataSource pack = getPack(name);
View Full Code Here

Examples of elemental.css.CSSStyleDeclaration.removeProperty()

    String visibility = CssUtils.setAndSaveProperty(element, "visibility", "hidden");
    String display = style.getDisplay();

    // if display set to none we remove it and let its normal style show through
    if (style.getDisplay().equals("none")) {
      style.removeProperty("display");
    } else {
      // it's likely display: none in a css class so we just have to guess.
      // We guess display:block since that's common on containers.
      style.setDisplay("block");
    }
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.