akJ Eclipse RCP Codes

plugin.properties
plugin.xml
org.jpn.xucker.optipngwrapper
OptiPNGExecuter
ResultData
org.jpn.xucker.rcp.optipngwrapper
FileListImageView
Messages
OptimizeListener
OptipngWrapperApplication
OptipngWrapperPerspective
OptipngWrapperPlugin
optipngwrapperResources.properties
optipngwrapperResources_ja.properties
OptipngWrapperView
OptipngWrapperWorkbenchAdvisor
ResultView
org.jpn.xucker.rcp.optipngwrapper.actions
UpdateAction
akJ OptipngWrapper

----
TOP
Blog
ak's java blog
Applications
akJ OptipngWrapper
Links
EclipseCon 2005
many great tutorials pdfs.
Eclipse RCP
eclipsepowered
---
Japanese(日本語) Site
Creative Commons
I use Java2Html.nice tool.
OptimizeListener.java
01 /*
02  * Created on 2005/03/04
03  * Author aki@www.xucker.jpn.org
04  * License Apache2.0 or Common Public License
05  */
06 package org.jpn.xucker.rcp.optipngwrapper;
07 
08 import java.io.File;
09 
10 /**
11  
12  *
13  */
14 public interface OptimizeListener {
15 public void optimizeEnd(File input,File output,long preSize,long endSize);
16 
17 public void optimizeStart(File input,File output);
18 }