Examples of FieldName


Examples of org.openquark.cal.compiler.FieldName

            return null;
        }
       
        TypeExpr[] typePieces = to.getType().getTypePieces(1);
       
        FieldName fieldName = RecordFieldSelectionGem.pickFieldName(typePieces[0], typePieces[1], currentModuleTypeInfo);
       
        return fieldName;

    }
View Full Code Here

Examples of org.openquark.cal.compiler.FieldName

           
            if (argName == null) {
               
                String nameFromCALDoc = null;
                if (caldoc != null && i < caldoc.getNArgBlocks()) {
                    FieldName argNameAsFieldName = caldoc.getNthArgBlock(i).getArgName();
                    if (argNameAsFieldName instanceof FieldName.Textual) {
                        nameFromCALDoc = argNameAsFieldName.getCalSourceForm();
                    }
                }
               
                String originalName = null;
                if (i < originalNames.length) {
View Full Code Here

Examples of org.openquark.cal.compiler.FieldName

                        else if (gemClicked instanceof RecordCreationGem){
                            // find the field that was clicked on
                            int fieldIndex = displayedGemClicked.getDisplayedGemShape().inputNameTagHit(e.getPoint());

                            if (fieldIndex != -1) {
                                FieldName fieldToRename = ((RecordCreationGem)gemClicked).getFieldName(fieldIndex);
                                Action action = getRenameRecordFieldAction((RecordCreationGem)gemClicked, fieldToRename.getCalSourceForm());

                                if (action.isEnabled()) {

                                    tableTop.displayFieldRenameEditor((RecordCreationGem)gemClicked, fieldToRename);
                                }
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.