Package easyJ.business.proxy

Examples of easyJ.business.proxy.DataProxy


    }
   
    public static StringBuffer getProperty(String classId, String lineNum, String columnsValue) throws EasyJException{
        SystemClass sysClass = new SystemClass();
        sysClass.setClassId(new Long(classId));
        DataProxy dp = SingleDataProxy.getInstance();
        sysClass = (SystemClass)dp.get(sysClass);
        String className = sysClass.getClassName();
        Property property  = new Property();
        property.setClassName(className);
        ArrayList properties = dp.query(property);
        StringBuffer buffer = new StringBuffer();
        for (Object obj : properties) {
            Property userProperty = (Property)obj;
            String propertyName = userProperty.getPropertyName();
            String propertyChiName = userProperty.getPropertyChiName();
View Full Code Here

TOP

Related Classes of easyJ.business.proxy.DataProxy

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.