Package VisualLogic

Examples of VisualLogic.ElementProperty


    public String toString()
    {
        Element element = vmobject.getElementWithID(elementID);
               
        ElementProperty elProp=(ElementProperty)element.propertyList.get(propertyIndex);
                   
        //jAddPEItem(elProp.label,elProp.referenz,elProp.min,elProp.max);
               
        return "elementID="+element.toString()+ ", property="+elProp.label;
    }
View Full Code Here


            Object [] data =new Object[2];
           
            Element el = vmobject.getElementWithID(p.elementID);
            if (el!=null)
            {
                ElementProperty elProp=(ElementProperty)el.propertyList.get(p.propertyIndex);                       
                data[0]=el.toString();
                data[1]=elProp.label;
                tabellenModel.addRow(data);                       
            }
           
View Full Code Here

        loading=true;
        jComboBox2.removeAllItems();
       
        for (int i=0;i<element.propertyList.size();i++)
        {
            ElementProperty elProp = (ElementProperty)element.propertyList.get(i);
                           
            jComboBox2.addItem(elProp.label);           
        }
        loading=false;
        //jComboBox2.setSelectedIndex(0);       
View Full Code Here

TOP

Related Classes of VisualLogic.ElementProperty

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.