diff --git a/src/ui/tmldd/TMLArchiArtifact.java b/src/ui/tmldd/TMLArchiArtifact.java index 11976ffbe19ed61d548457226b49c298c5feb922..d15ed3c3f19c64b35f032ae99a6c40370588c93f 100755 --- a/src/ui/tmldd/TMLArchiArtifact.java +++ b/src/ui/tmldd/TMLArchiArtifact.java @@ -271,7 +271,12 @@ public class TMLArchiArtifact extends TGCWithoutInternalComponent implements Swa } operation = elt.getAttribute("operation"); if( (elt.getAttribute("fatherComponentMECType") != null) && (elt.getAttribute("fatherComponentMECType").length() > 0) ) { - fatherArchUnitMECType = ArchUnitMEC.Types.get( Integer.valueOf( elt.getAttribute("fatherComponentMECType") ) ); + if( elt.getAttribute("fatherComponentMECType").length() > 1 ) { + fatherArchUnitMECType = ArchUnitMEC.Types.get(0); + } + else { + fatherArchUnitMECType = ArchUnitMEC.Types.get( Integer.valueOf( elt.getAttribute("fatherComponentMECType") ) ); + } } } if (svalue != null) { @@ -315,41 +320,41 @@ public class TMLArchiArtifact extends TGCWithoutInternalComponent implements Swa return "Priority = " + priority; } - public OperationMEC getOperationMECOfTask() { + public int getOperationType() { if( fatherArchUnitMECType instanceof FepMEC ) { if( operation.equals( "CWM" ) ) { - return new CwmMEC( "", "", "" ); + return FepOperationMEC.CwmMEC; } else if( operation.equals( "CWL" ) ) { - return new CwlMEC( "", "", "" ); + return FepOperationMEC.CwlMEC; } else if( operation.equals( "CWA" ) ) { - return new CwaMEC( "", "", "", "" ); + return FepOperationMEC.CwaMEC; } else if( operation.equals( "CWP" ) ) { - return new CwpMEC( "", "", "" ); + return FepOperationMEC.CwpMEC; } else if( operation.equals( "FFT" ) ) { - return new FftMEC( "", "", "" ); + return FepOperationMEC.FftMEC; } else if( operation.equals( "SUM" ) ) { - return new SumMEC( "", "", "" ); + return FepOperationMEC.SumMEC; } } else if( fatherArchUnitMECType instanceof MapperMEC ) { - return new MappOperationMEC( "", "", "" ); + return OperationMEC.MappOperationMEC; } else if( fatherArchUnitMECType instanceof InterleaverMEC ) { - return new IntlOperationMEC( "", "", "" ); + return OperationMEC.IntlOperationMEC; } else if( fatherArchUnitMECType instanceof AdaifMEC ) { - return new AdaifOperationMEC( "", "", "" ); + return OperationMEC.AdaifOperationMEC; } else if( fatherArchUnitMECType instanceof CpuMEC ) { - return new CpuOperationMEC( "", "", "" ); + return OperationMEC.CpuOperationMEC; } - return null; + return -1; } public ArchUnitMEC getArchUnitMEC() { diff --git a/src/ui/tmldd/TMLArchiCPUNode.java b/src/ui/tmldd/TMLArchiCPUNode.java index 525e25b0d39cc114d5127671c888c3513e8f73d8..cce9c6b0f4e75e1956a17a1e9228b32fff110472 100755 --- a/src/ui/tmldd/TMLArchiCPUNode.java +++ b/src/ui/tmldd/TMLArchiCPUNode.java @@ -542,7 +542,12 @@ public class TMLArchiCPUNode extends TMLArchiNode implements SwallowTGComponent, clockRatio = Integer.decode(elt.getAttribute("clockRatio")).intValue(); } if ((elt.getAttribute("MECType") != null) && (elt.getAttribute("MECType").length() > 0)){ - MECType = ArchUnitMEC.Types.get( Integer.valueOf( elt.getAttribute("MECType") ) ); + if( elt.getAttribute("MECType").length() > 1 ) { //old format + MECType = ArchUnitMEC.Types.get(0); + } + else { + MECType = ArchUnitMEC.Types.get( Integer.valueOf( elt.getAttribute("MECType") ) ); + } } if ((elt.getAttribute("sliceTime") != null) && (elt.getAttribute("sliceTime").length() > 0)){ sliceTime = Integer.decode(elt.getAttribute("sliceTime")).intValue();