Examples of removeItem()


Examples of org.openbp.guiclient.model.ModelConnector.removeItem()

          {
            modelConnector.removeModel((Model) item);
          }
          else
          {
            modelConnector.removeItem(item);
          }
        }
        catch (ModelException ex)
        {
          modelConnector.showExceptionDialog(ex, item);
View Full Code Here

Examples of org.openhab.binding.enocean.internal.profiles.Profile.removeItem()

        EEPId eep = enoceanBindingProvider.getEEP(itemName);
        esp3Host.addDeviceProfile(parameterAddress.getEnoceanDeviceId(), eep);
        Item item = enoceanBindingProvider.getItem(itemName);
        if (profiles.containsKey(parameterAddress.getAsString())) {
            Profile profile = profiles.get(parameterAddress.getAsString());
            profile.removeItem(item);
        }
        Class<Profile> customProfileClass = enoceanBindingProvider.getCustomProfile(itemName);
        if (customProfileClass != null) {
            Constructor<Profile> constructor;
            Profile profile;
View Full Code Here

Examples of org.openntf.domino.Document.removeItem()

    //    synchronized (props) {
    props.remove(key);
    //    }
    Document doc = getRawDocument();
    synchronized (doc) {
      doc.removeItem(key);
    }
    //    synchronized (removedProperties_) {
    getRemovedPropertiesInt().add(key);
    //    }
    //    synchronized (propKeys_) {
View Full Code Here

Examples of org.openqa.selenium.WebElement.removeItem()

        updateUI(new RequestHandler() {

            @Override
            public void onRequest() {
                final PListBox listBox1 = get("listBox1");
                listBox1.removeItem("Item 2");
                listBox1.removeItem(2);
            }
        });

        options = listBox1.findElements(By.tagName("option"));
View Full Code Here

Examples of org.pdfbox.cos.COSDictionary.removeItem()

        COSDictionary trailer = doc.getTrailer();
        //sort xref, needed only if object keys not regenerated
        Collections.sort(getXRefEntries());
        COSWriterXRefEntry lastEntry = (COSWriterXRefEntry)getXRefEntries().get( getXRefEntries().size()-1);
        trailer.setInt(COSName.getPDFName("Size"), (int)lastEntry.getKey().getNumber()+1);
        trailer.removeItem( COSName.PREV );
        /**
        COSObject catalog = doc.getCatalog();
        if (catalog != null)
        {
            trailer.setItem(COSName.getPDFName("Root"), catalog);
View Full Code Here

Examples of oxygenoffice.extensions.smart.diagram.processes.ProcessDiagramItem.removeItem()

                XShape xNextSelectedShape = getPreviousShape();
       
                if(!selectedShapeName.endsWith("RectangleShape0")){
                    if(selectedShapeID == 1 && getTopShapeID() == 1)
                        xNextSelectedShape = getControlShape();
                    selectedItem.removeItem();
                    decreaseItemsIDs(selectedShapeID);
                }

                if(xNextSelectedShape != null)
                    getController().setSelectedShape(xNextSelectedShape);
View Full Code Here

Examples of oxygenoffice.extensions.smart.diagram.relationdiagrams.RelationDiagramItem.removeItem()

                }
       
                if(selectedShapeName.contains("EllipseShape") && !selectedShapeName.endsWith("EllipseShape0")){
                    if(selectedShapeID == 1 && getTopShapeID() == 1)
                        xNextSelectedShape = getControlShape();
                    selectedItem.removeItem();
                    decreaseItemsIDs(selectedShapeID);
                }

                if(xNextSelectedShape != null)
                    getController().setSelectedShape(xNextSelectedShape);
View Full Code Here

Examples of powercrystals.core.inventory.IInventoryManager.removeItem()

          ItemStack remaining = UtilInventory.dropStack(this, stackToDrop, this.getDirectionFacing(), this.getDirectionFacing());
         
          // remaining == null if dropped successfully.
          if(remaining == null)
          {
            inventory.removeItem(1, stackToDrop);
            break inv;
          }
        }
      }
    }
View Full Code Here

Examples of xpetstore.services.cart.interfaces.CartLocal.removeItem()

            cart = CartUtil.getLocalHome(  ).create(  );
            cart.addItem( "EST-1" );
            cart.addItem( "EST-2" );
            cart.addItem( "EST-10" );
            cart.addItem( "EST-1", 9 );
            cart.removeItem( "EST-2" );

            // Cart count
            assertEquals( "cart.count", 2, cart.getCount(  ) );

            // Cart items
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.