Path: csiph.com!usenet.pasdenom.info!gegeweb.org!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: Jeff Higgins Newsgroups: comp.lang.java.programmer Subject: AAA Abstract Application Annotations Date: Sun, 04 Mar 2012 22:29:45 -0500 Organization: A noiseless patient Spider Lines: 47 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Mon, 5 Mar 2012 03:29:05 +0000 (UTC) Injection-Info: mx04.eternal-september.org; posting-host="BSKXKq4dV+7jFlM4JDctyw"; logging-data="21060"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/q3qtZRV4LK276k4yWRK5Kmhg47Ow1NnU=" User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.16) Gecko/20120207 Icedove/3.0.11 In-Reply-To: Cancel-Lock: sha1:UHrEg4tr/vFOcO8+qcFVKzEsHTY= Xref: csiph.com comp.lang.java.programmer:12695 On 03/04/2012 11:27 AM, Jan Burse wrote: > Can SAF be considered something inbetween > Swing and Eclipse? What other similar > frameworks like SAF are available now? Does not yet exist yet to my knowledge. Very lightweight. Abstract Application Annotations Requires only a builder on the development platform. Develop an application by writing annotated interfaces. Declarative configuration using (xml?). @PackagingImpl interface IApplication { @PlatformImpl void launch(String[] args); } @PackagingImpl interface IPlugin { @Uninstall void install(); @AsService void start(); @Site void update(); } @Persistance @Typed interface IData { void create(); void retrieve(); void update(); void remove(); }