Re: ofbiz ide

2007-04-06 Thread Christopher Snow
a basic eclipse plugin prototype of an ofbiz- ide. The plugin will need to manipulate ofbiz metadata (definitions of components/entity/service/etc). The options: 1) ignore existing ofbiz code base and create separate plugin logic for reading/writing metadata 2) extract the ofbiz code (Start.init(), etc

Re: ofbiz ide

2007-04-05 Thread David E. Jones
AM, Christopher Snow wrote: I'm currently creating a basic eclipse plugin prototype of an ofbiz- ide. The plugin will need to manipulate ofbiz metadata (definitions of components/entity/service/etc). The options: 1) ignore existing ofbiz code base and create separate plugin logic for reading

Re: ofbiz ide

2007-04-05 Thread Christopher Snow
= ComponentConfig.getAllComponents(); Iterator i = components.iterator(); while (i.hasNext()) { ComponentConfig cc = (ComponentConfig) i.next(); // feed into a JFace viewer } -David On Apr 5, 2007, at 4:27 AM, Christopher Snow wrote: I'm currently creating a basic eclipse plugin prototype of an ofbiz- ide