01: /*
02: * Copyright (c) 2005 Oculus Technologies Corporation, All Rights Reserved
03: */
04: package abbot.editor.editors;
05:
06: import abbot.script.*;
07:
08: /** Simplified version of {@link ScriptEditor}.
09: * @author twall
10: *
11: */
12: public class FixtureEditor extends ScriptEditor {
13: /**
14: * @param script
15: */
16: public FixtureEditor(Fixture script) {
17: super(script);
18: }
19: }
|