| 1 | // _Vox_EOArchive.java |
|---|
| 2 | // Generated by EnterpriseObjects palette at Tuesday, June 20, 2006 3:11:39 PM US/Pacific |
|---|
| 3 | |
|---|
| 4 | import com.webobjects.eoapplication.*; |
|---|
| 5 | import com.webobjects.eocontrol.*; |
|---|
| 6 | import com.webobjects.eointerface.*; |
|---|
| 7 | import com.webobjects.eointerface.swing.*; |
|---|
| 8 | import com.webobjects.foundation.*; |
|---|
| 9 | import java.awt.*; |
|---|
| 10 | import javax.swing.*; |
|---|
| 11 | import javax.swing.border.*; |
|---|
| 12 | import javax.swing.table.*; |
|---|
| 13 | import javax.swing.text.*; |
|---|
| 14 | |
|---|
| 15 | public class _Vox_EOArchive extends com.webobjects.eoapplication.EOArchive { |
|---|
| 16 | VoxController _voxController0; |
|---|
| 17 | VoxRoundedView _nsCustomView0; |
|---|
| 18 | com.webobjects.eointerface.swing.EOFrame _eoFrame0; |
|---|
| 19 | com.webobjects.eointerface.swing.EOImageView _nsImageView0; |
|---|
| 20 | javax.swing.JPanel _nsView0; |
|---|
| 21 | |
|---|
| 22 | public _Vox_EOArchive(Object owner, NSDisposableRegistry registry) { |
|---|
| 23 | super(owner, registry); |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | protected void _construct() { |
|---|
| 27 | Object owner = _owner(); |
|---|
| 28 | EOArchive._ObjectInstantiationDelegate delegate = (owner instanceof EOArchive._ObjectInstantiationDelegate) ? (EOArchive._ObjectInstantiationDelegate)owner : null; |
|---|
| 29 | Object replacement; |
|---|
| 30 | |
|---|
| 31 | super._construct(); |
|---|
| 32 | |
|---|
| 33 | _voxController0 = (VoxController)_registered(new VoxController(), "VoxController"); |
|---|
| 34 | _nsImageView0 = (com.webobjects.eointerface.swing.EOImageView)_registered(new com.webobjects.eointerface.swing.EOImageView(), ""); |
|---|
| 35 | _nsCustomView0 = (VoxRoundedView)_registered(new VoxRoundedView(), "View"); |
|---|
| 36 | _eoFrame0 = (com.webobjects.eointerface.swing.EOFrame)_registered(new com.webobjects.eointerface.swing.EOFrame(), "Main"); |
|---|
| 37 | _nsView0 = (JPanel)_eoFrame0.getContentPane(); |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | protected void _awaken() { |
|---|
| 41 | super._awaken(); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | protected void _init() { |
|---|
| 45 | super._init(); |
|---|
| 46 | if (!(_nsView0.getLayout() instanceof EOViewLayout)) { _nsView0.setLayout(new EOViewLayout()); } |
|---|
| 47 | _nsCustomView0.setSize(213, 108); |
|---|
| 48 | _nsCustomView0.setLocation(-7, -6); |
|---|
| 49 | ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsCustomView0, EOViewLayout.MinYMargin); |
|---|
| 50 | _nsView0.add(_nsCustomView0); |
|---|
| 51 | _nsImageView0.setSize(74, 68); |
|---|
| 52 | _nsImageView0.setLocation(67, 14); |
|---|
| 53 | ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsImageView0, EOViewLayout.MinYMargin); |
|---|
| 54 | _nsView0.add(_nsImageView0); |
|---|
| 55 | _nsView0.setSize(199, 96); |
|---|
| 56 | _eoFrame0.setTitle("Vox"); |
|---|
| 57 | _eoFrame0.setLocation(430, 557); |
|---|
| 58 | _eoFrame0.setSize(199, 96); |
|---|
| 59 | } |
|---|
| 60 | } |
|---|