From: <hu...@us...> - 2006-10-26 21:27:30
|
Revision: 323 http://svn.sourceforge.net/cishell/?rev=323&view=rev Author: huangb Date: 2006-10-26 14:27:25 -0700 (Thu, 26 Oct 2006) Log Message: ----------- add the support for text and grace file format Modified Paths: -------------- trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java Modified: trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java =================================================================== --- trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java 2006-10-26 20:15:50 UTC (rev 322) +++ trunk/templates/org.cishell.templates/src/org/cishell/templates/staticexecutable/StaticExecutableRunner.java 2006-10-26 21:27:25 UTC (rev 323) @@ -127,6 +127,10 @@ type = DataProperty.NETWORK_TYPE; } else if (type.equalsIgnoreCase(DataProperty.TREE_TYPE)) { type = DataProperty.TREE_TYPE; + } else if(type.equalsIgnoreCase(DataProperty.TEXT_TYPE)){ + type = DataProperty.TEXT_TYPE; + } else if (type.equalsIgnoreCase(DataProperty.GRACE_TYPE)){ + type = DataProperty.GRACE_TYPE; } else { type = DataProperty.OTHER_TYPE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |