Package easyJ.system.data

Examples of easyJ.system.data.SystemClass


        StringBuffer returnMsg = new StringBuffer();
        returnMsg.append("<div align='center' style='font:18' color='red'>" + flowNodeCode +"</div>");
        if (hintMessage != null)
            returnMsg.append("<div style='font:18' color='red'>" + hintMessage+"</div>");
        if (classId != null) {
            SystemClass sysClass = new SystemClass();
            sysClass.setClassId(classId);
            sysClass = (SystemClass)dp.get(sysClass);
            classType = sysClass.getClassName();
            String columns = interaction.getColumns();
            ArrayList editProperties = userCache.getEditProperties(classType);
           
            //得到用来显示的字段。
            ArrayList showProperties = new ArrayList();
View Full Code Here


       
        returnMessage = buffer.toString() + "<message>";
    }
   
    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) {
View Full Code Here

TOP

Related Classes of easyJ.system.data.SystemClass

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.