public ConcreteInstructionFactory(AbstractInstructionFactory RFormatFactory, AbstractInstructionFactory IFormatFactory, AbstractInstructionFactory JFormatFactory)
 {
     RFormat = RFormatFactory;
     IFormat = IFormatFactory;
     JFormat = JFormatFactory;
 }
Exemple #2
0
 public Disassembler(AbstractInstructionFactory InstructionFactory)
 {
     instructionFactory = InstructionFactory;
 }