~fredericp/zaluum/wip-ide

« back to all changes in this revision

Viewing changes to org.zaluum.cmodel/src/org/zaluum/cmodel/CPort.java

  • Committer: Frederic Perez Ordeig
  • Date: 2009-12-17 19:25:17 UTC
  • Revision ID: frederic@zaluum.com-20091217192517-ix40ze193b19pkdw
add push dialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
                return result;
102
102
        }
103
103
        public String getFQName() {
104
 
                return box.getFqName() + "$" +name;
 
104
                return calcFQName(box.getFqName(),name);
 
105
        }
 
106
        public static String calcFQName(String prefix, String portName){
 
107
                return prefix + "$" + portName;
105
108
        }
106
109
        public CPort getFrom() {
107
110
                if (!isIn()) throw new RuntimeException();