@@ -144,16 +144,16 @@ public void setDebugMode(boolean debugMode) {
144144// * IOptionProperty
145145// * @param property
146146// */
147- // public void setProperty(IOptionProperty property ) {
148- // this.setEncodingProperty(property.getEncodingProperty ());
149- // this.setMatchReplaceProperty(property.getMatchReplaceProperty ());
150- // this.setMatchAlertProperty(property.getMatchAlertProperty ());
151- // this.setSendToProperty(property.getSendToProperty ());
152- // this.setLoggingProperty(property.getLoggingProperty ());
153- // this.setJSearchProperty(property.getJSearchProperty ());
154- // this.setJTransCoderProperty(property.getJTransCoderProperty ());
155- // this.setDebugMode(property.getDebugMode()) ;
156- // }
147+ public Map < String , String > getProperty ( ) {
148+ this .config . put ( this . universalViewProperty . getSettingName (), this . universalViewProperty . loadSetting ());
149+ this .config . put ( this . matchReplaceProperty . getSettingName (), this . matchReplaceProperty . loadSetting ());
150+ this .config . put ( this . matchAlertProperty . getSettingName (), this . matchAlertProperty . loadSetting ());
151+ this .config . put ( this . sendToProperty . getSettingName (), this . sendToProperty . loadSetting ());
152+ this .config . put ( this . logProperty . getSettingName (), this . logProperty . loadSetting ());
153+ this .config . put ( this . searchProperty . getSettingName (), this . searchProperty . loadSetting ());
154+ this .config . put ( this . transcoderProperty . getSettingName (), this . transcoderProperty . loadSetting ());
155+ return this .config ;
156+ }
157157
158158 public void setProperty (Map <String , String > config ) {
159159 String configUniversalViewProperty = config .get (this .universalViewProperty .getSettingName ());
0 commit comments