diff options
author | Bruce Smith <bruce@nanorex.com> | 2008-09-05 19:59:57 +0000 |
---|---|---|
committer | Bruce Smith <bruce@nanorex.com> | 2008-09-05 19:59:57 +0000 |
commit | abc2556083f8ae5bee586bbcfda8fc2ae3e4b8d7 (patch) | |
tree | 94e51fd809657a9ea547d4bff113d65fcefa18af | |
parent | e84fb289fe540041bd1bb4f01993a84634a04c56 (diff) | |
download | nanoengineer-theirix-abc2556083f8ae5bee586bbcfda8fc2ae3e4b8d7.tar.gz nanoengineer-theirix-abc2556083f8ae5bee586bbcfda8fc2ae3e4b8d7.zip |
comment
-rw-r--r-- | cad/src/dna/command_support/BreakOrJoinStrands_Command.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cad/src/dna/command_support/BreakOrJoinStrands_Command.py b/cad/src/dna/command_support/BreakOrJoinStrands_Command.py index 2c0b5ead2..299d8c453 100644 --- a/cad/src/dna/command_support/BreakOrJoinStrands_Command.py +++ b/cad/src/dna/command_support/BreakOrJoinStrands_Command.py @@ -3,7 +3,7 @@ @author: Ninad @copyright: 2008 Nanorex, Inc. See LICENSE file for details. -@version:$Id$ +@version: $Id$ History: 2008-08-06: refactored Break and Join Strands commands to create this new class @@ -28,6 +28,12 @@ class BreakOrJoinStrands_Command(BuildAtoms_Command): command_porting_status = "PARTIAL: 2008-0--05: needs PM_class refactoring" command_level = CL_SUBCOMMAND + # Note: maybe this should be CL_ABSTRACT so it's correct for *this* class, + # which each subclass of this class specifying command_level = CL_SUBCOMMAND. + # For now, this doesn't matter, since this command's name is in + # _KLUGE_ABSTRACT_CLASSNAMES in FeatureDescriptor.py, and since + # that code doesn't yet pay attention to CL_ABSTRACT anyway. + # [bruce 080905 comment] command_parent = 'BUILD_DNA' command_can_be_suspended = False |