Package simtools.ui.JDialogObjectInfo

Examples of simtools.ui.JDialogObjectInfo.Info


         */
        public Object getValueAt(int row, int column) {
            //the result of the method.
            Object result = null;
            //retrieve the requested info.
            Info info = (Info) infos.get(row);
            //On column 0, return the name.
            switch (column) {
            case NAME_COLUMN:
                result = info.name;
                break;
View Full Code Here

TOP

Related Classes of simtools.ui.JDialogObjectInfo.Info

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.