Modified: logging/site/trunk/docs/chainsaw/xref/org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html URL: http://svn.apache.org/viewvc/logging/site/trunk/docs/chainsaw/xref/org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html?rev=570936&r1=570935&r2=570936&view=diff ============================================================================== --- logging/site/trunk/docs/chainsaw/xref/org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html (original) +++ logging/site/trunk/docs/chainsaw/xref/org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html Wed Aug 29 14:35:10 2007 @@ -69,344 +69,343 @@ <a name="60" href="#60">60</a> <em> * A panel that allows the user to edit a particular Plugin, by using introspection</em> <a name="61" href="#61">61</a> <em> * this class discovers the modifiable properties of the Plugin</em> <a name="62" href="#62">62</a> <em> * @author Paul Smith <[EMAIL PROTECTED]></em> -<a name="63" href="#63">63</a> <em> * @since 1.3</em> -<a name="64" href="#64">64</a> <em> */</em> -<a name="65" href="#65">65</a> <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a> <strong>extends</strong> JPanel { -<a name="66" href="#66">66</a> -<a name="67" href="#67">67</a> <strong>private</strong> <strong>final</strong> JScrollPane scrollPane = <strong>new</strong> JScrollPane(); -<a name="68" href="#68">68</a> <strong>private</strong> <strong>final</strong> JTable propertyTable = <strong>new</strong> JTable(); -<a name="69" href="#69">69</a> -<a name="70" href="#70">70</a> <strong>private</strong> Plugin plugin; -<a name="71" href="#71">71</a> <strong>private</strong> TableModel defaultModel = <strong>new</strong> DefaultTableModel( -<a name="72" href="#72">72</a> <strong>new</strong> String[] { <span class="string">"Property"</span>, <span class="string">"Value"</span> }, 1); -<a name="73" href="#73">73</a> -<a name="74" href="#74">74</a> <strong>private</strong> <strong>static</strong> <strong>final</strong> Logger logger = LogManager.getLogger(PluginPropertyEditorPanel.<strong>class</strong>); -<a name="75" href="#75">75</a> <em>/**<em>*</em></em> -<a name="76" href="#76">76</a> <em> *</em> -<a name="77" href="#77">77</a> <em> */</em> -<a name="78" href="#78">78</a> <strong>public</strong> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a>() { -<a name="79" href="#79">79</a> <strong>super</strong>(); -<a name="80" href="#80">80</a> initComponents(); -<a name="81" href="#81">81</a> setupListeners(); -<a name="82" href="#82">82</a> } -<a name="83" href="#83">83</a> -<a name="84" href="#84">84</a> <em>/**<em>*</em></em> -<a name="85" href="#85">85</a> <em> *</em> -<a name="86" href="#86">86</a> <em> */</em> -<a name="87" href="#87">87</a> <strong>private</strong> <strong>void</strong> initComponents() { -<a name="88" href="#88">88</a> setPreferredSize(<strong>new</strong> Dimension(160, 120)); -<a name="89" href="#89">89</a> setLayout(<strong>new</strong> BorderLayout()); -<a name="90" href="#90">90</a> scrollPane.setViewportView(propertyTable); -<a name="91" href="#91">91</a> -<a name="92" href="#92">92</a> add(scrollPane, BorderLayout.CENTER); -<a name="93" href="#93">93</a> -<a name="94" href="#94">94</a> propertyTable.setModel( -<a name="95" href="#95">95</a> defaultModel = <strong>new</strong> DefaultTableModel( -<a name="96" href="#96">96</a> <strong>new</strong> String[] { <span class="string">"Property"</span>, <span class="string">"Value"</span> }, 1)); -<a name="97" href="#97">97</a> -<a name="98" href="#98">98</a> } -<a name="99" href="#99">99</a> -<a name="100" href="#100">100</a> <em>/**<em>*</em></em> -<a name="101" href="#101">101</a> <em> *</em> -<a name="102" href="#102">102</a> <em> */</em> -<a name="103" href="#103">103</a> <strong>private</strong> <strong>void</strong> setupListeners() { -<a name="104" href="#104">104</a> addPropertyChangeListener(<span class="string">"plugin"</span>, <strong>new</strong> PropertyChangeListener() { -<a name="105" href="#105">105</a> -<a name="106" href="#106">106</a> <strong>public</strong> <strong>void</strong> propertyChange(PropertyChangeEvent evt) { -<a name="107" href="#107">107</a> -<a name="108" href="#108">108</a> <strong>final</strong> Plugin p = (Plugin) evt.getNewValue(); -<a name="109" href="#109">109</a> -<a name="110" href="#110">110</a> <strong>if</strong> (p != <strong>null</strong>) { -<a name="111" href="#111">111</a> -<a name="112" href="#112">112</a> <strong>try</strong> { -<a name="113" href="#113">113</a> -<a name="114" href="#114">114</a> PluginPropertyTableModel model = -<a name="115" href="#115">115</a> <strong>new</strong> PluginPropertyTableModel(p); -<a name="116" href="#116">116</a> propertyTable.setModel(model); -<a name="117" href="#117">117</a> propertyTable.getColumnModel().getColumn(1) -<a name="118" href="#118">118</a> .setCellEditor(<strong>new</strong> PluginTableCellEditor()); -<a name="119" href="#119">119</a> propertyTable.setEnabled(<strong>true</strong>); -<a name="120" href="#120">120</a> } <strong>catch</strong> (Throwable e) { -<a name="121" href="#121">121</a> logger.error(<span class="string">"Failed to introspect the Plugin"</span>, e); -<a name="122" href="#122">122</a> } -<a name="123" href="#123">123</a> } <strong>else</strong> { -<a name="124" href="#124">124</a> propertyTable.setModel(defaultModel); -<a name="125" href="#125">125</a> propertyTable.setEnabled(false); -<a name="126" href="#126">126</a> } -<a name="127" href="#127">127</a> -<a name="128" href="#128">128</a> } -<a name="129" href="#129">129</a> }); -<a name="130" href="#130">130</a> } -<a name="131" href="#131">131</a> -<a name="132" href="#132">132</a> <strong>public</strong> <strong>static</strong> <strong>void</strong> main(String[] args) { -<a name="133" href="#133">133</a> -<a name="134" href="#134">134</a> JFrame frame = <strong>new</strong> JFrame(<span class="string">"Property Editor Test bed"</span>); -<a name="135" href="#135">135</a> frame.addWindowListener(<strong>new</strong> WindowAdapter() { -<a name="136" href="#136">136</a> <strong>public</strong> <strong>void</strong> windowClosed(WindowEvent e) { -<a name="137" href="#137">137</a> System.exit(1); -<a name="138" href="#138">138</a> } -<a name="139" href="#139">139</a> }); -<a name="140" href="#140">140</a> -<a name="141" href="#141">141</a> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a> panel = <strong>new</strong> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a>(); +<a name="63" href="#63">63</a> <em> */</em> +<a name="64" href="#64">64</a> <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a> <strong>extends</strong> JPanel { +<a name="65" href="#65">65</a> +<a name="66" href="#66">66</a> <strong>private</strong> <strong>final</strong> JScrollPane scrollPane = <strong>new</strong> JScrollPane(); +<a name="67" href="#67">67</a> <strong>private</strong> <strong>final</strong> JTable propertyTable = <strong>new</strong> JTable(); +<a name="68" href="#68">68</a> +<a name="69" href="#69">69</a> <strong>private</strong> Plugin plugin; +<a name="70" href="#70">70</a> <strong>private</strong> TableModel defaultModel = <strong>new</strong> DefaultTableModel( +<a name="71" href="#71">71</a> <strong>new</strong> String[] { <span class="string">"Property"</span>, <span class="string">"Value"</span> }, 1); +<a name="72" href="#72">72</a> +<a name="73" href="#73">73</a> <strong>private</strong> <strong>static</strong> <strong>final</strong> Logger logger = LogManager.getLogger(PluginPropertyEditorPanel.<strong>class</strong>); +<a name="74" href="#74">74</a> <em>/**<em>*</em></em> +<a name="75" href="#75">75</a> <em> *</em> +<a name="76" href="#76">76</a> <em> */</em> +<a name="77" href="#77">77</a> <strong>public</strong> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a>() { +<a name="78" href="#78">78</a> <strong>super</strong>(); +<a name="79" href="#79">79</a> initComponents(); +<a name="80" href="#80">80</a> setupListeners(); +<a name="81" href="#81">81</a> } +<a name="82" href="#82">82</a> +<a name="83" href="#83">83</a> <em>/**<em>*</em></em> +<a name="84" href="#84">84</a> <em> *</em> +<a name="85" href="#85">85</a> <em> */</em> +<a name="86" href="#86">86</a> <strong>private</strong> <strong>void</strong> initComponents() { +<a name="87" href="#87">87</a> setPreferredSize(<strong>new</strong> Dimension(160, 120)); +<a name="88" href="#88">88</a> setLayout(<strong>new</strong> BorderLayout()); +<a name="89" href="#89">89</a> scrollPane.setViewportView(propertyTable); +<a name="90" href="#90">90</a> +<a name="91" href="#91">91</a> add(scrollPane, BorderLayout.CENTER); +<a name="92" href="#92">92</a> +<a name="93" href="#93">93</a> propertyTable.setModel( +<a name="94" href="#94">94</a> defaultModel = <strong>new</strong> DefaultTableModel( +<a name="95" href="#95">95</a> <strong>new</strong> String[] { <span class="string">"Property"</span>, <span class="string">"Value"</span> }, 1)); +<a name="96" href="#96">96</a> +<a name="97" href="#97">97</a> } +<a name="98" href="#98">98</a> +<a name="99" href="#99">99</a> <em>/**<em>*</em></em> +<a name="100" href="#100">100</a> <em> *</em> +<a name="101" href="#101">101</a> <em> */</em> +<a name="102" href="#102">102</a> <strong>private</strong> <strong>void</strong> setupListeners() { +<a name="103" href="#103">103</a> addPropertyChangeListener(<span class="string">"plugin"</span>, <strong>new</strong> PropertyChangeListener() { +<a name="104" href="#104">104</a> +<a name="105" href="#105">105</a> <strong>public</strong> <strong>void</strong> propertyChange(PropertyChangeEvent evt) { +<a name="106" href="#106">106</a> +<a name="107" href="#107">107</a> <strong>final</strong> Plugin p = (Plugin) evt.getNewValue(); +<a name="108" href="#108">108</a> +<a name="109" href="#109">109</a> <strong>if</strong> (p != <strong>null</strong>) { +<a name="110" href="#110">110</a> +<a name="111" href="#111">111</a> <strong>try</strong> { +<a name="112" href="#112">112</a> +<a name="113" href="#113">113</a> PluginPropertyTableModel model = +<a name="114" href="#114">114</a> <strong>new</strong> PluginPropertyTableModel(p); +<a name="115" href="#115">115</a> propertyTable.setModel(model); +<a name="116" href="#116">116</a> propertyTable.getColumnModel().getColumn(1) +<a name="117" href="#117">117</a> .setCellEditor(<strong>new</strong> PluginTableCellEditor()); +<a name="118" href="#118">118</a> propertyTable.setEnabled(<strong>true</strong>); +<a name="119" href="#119">119</a> } <strong>catch</strong> (Throwable e) { +<a name="120" href="#120">120</a> logger.error(<span class="string">"Failed to introspect the Plugin"</span>, e); +<a name="121" href="#121">121</a> } +<a name="122" href="#122">122</a> } <strong>else</strong> { +<a name="123" href="#123">123</a> propertyTable.setModel(defaultModel); +<a name="124" href="#124">124</a> propertyTable.setEnabled(false); +<a name="125" href="#125">125</a> } +<a name="126" href="#126">126</a> +<a name="127" href="#127">127</a> } +<a name="128" href="#128">128</a> }); +<a name="129" href="#129">129</a> } +<a name="130" href="#130">130</a> +<a name="131" href="#131">131</a> <strong>public</strong> <strong>static</strong> <strong>void</strong> main(String[] args) { +<a name="132" href="#132">132</a> +<a name="133" href="#133">133</a> JFrame frame = <strong>new</strong> JFrame(<span class="string">"Property Editor Test bed"</span>); +<a name="134" href="#134">134</a> frame.addWindowListener(<strong>new</strong> WindowAdapter() { +<a name="135" href="#135">135</a> <strong>public</strong> <strong>void</strong> windowClosed(WindowEvent e) { +<a name="136" href="#136">136</a> System.exit(1); +<a name="137" href="#137">137</a> } +<a name="138" href="#138">138</a> }); +<a name="139" href="#139">139</a> +<a name="140" href="#140">140</a> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a> panel = <strong>new</strong> <a href="../../../../../org/apache/log4j/chainsaw/receivers/PluginPropertyEditorPanel.html">PluginPropertyEditorPanel</a>(); +<a name="141" href="#141">141</a> <a name="142" href="#142">142</a> -<a name="143" href="#143">143</a> -<a name="144" href="#144">144</a> frame.getContentPane().add(panel); -<a name="145" href="#145">145</a> frame.pack(); -<a name="146" href="#146">146</a> -<a name="147" href="#147">147</a> frame.setVisible(<strong>true</strong>); -<a name="148" href="#148">148</a> -<a name="149" href="#149">149</a> SocketHubReceiver r = <strong>new</strong> SocketHubReceiver(); -<a name="150" href="#150">150</a> -<a name="151" href="#151">151</a> panel.setPlugin(r); -<a name="152" href="#152">152</a> -<a name="153" href="#153">153</a> <strong>try</strong> { -<a name="154" href="#154">154</a> Thread.sleep(3000); -<a name="155" href="#155">155</a> -<a name="156" href="#156">156</a> panel.setPlugin(<strong>new</strong> <a href="../../../../../org/apache/log4j/chainsaw/Generator.html">Generator</a>(<span class="string">"MyPlugin"</span>)); -<a name="157" href="#157">157</a> } <strong>catch</strong> (Exception e) { -<a name="158" href="#158">158</a> <em class="comment">// TODO: handle exception</em> -<a name="159" href="#159">159</a> } +<a name="143" href="#143">143</a> frame.getContentPane().add(panel); +<a name="144" href="#144">144</a> frame.pack(); +<a name="145" href="#145">145</a> +<a name="146" href="#146">146</a> frame.setVisible(<strong>true</strong>); +<a name="147" href="#147">147</a> +<a name="148" href="#148">148</a> SocketHubReceiver r = <strong>new</strong> SocketHubReceiver(); +<a name="149" href="#149">149</a> +<a name="150" href="#150">150</a> panel.setPlugin(r); +<a name="151" href="#151">151</a> +<a name="152" href="#152">152</a> <strong>try</strong> { +<a name="153" href="#153">153</a> Thread.sleep(3000); +<a name="154" href="#154">154</a> +<a name="155" href="#155">155</a> panel.setPlugin(<strong>new</strong> <a href="../../../../../org/apache/log4j/chainsaw/Generator.html">Generator</a>(<span class="string">"MyPlugin"</span>)); +<a name="156" href="#156">156</a> } <strong>catch</strong> (Exception e) { +<a name="157" href="#157">157</a> <em class="comment">// TODO: handle exception</em> +<a name="158" href="#158">158</a> } +<a name="159" href="#159">159</a> <a name="160" href="#160">160</a> -<a name="161" href="#161">161</a> -<a name="162" href="#162">162</a> } -<a name="163" href="#163">163</a> -<a name="164" href="#164">164</a> <em>/**<em>*</em></em> -<a name="165" href="#165">165</a> <em> * @return Returns the plugin.</em> -<a name="166" href="#166">166</a> <em> */</em> -<a name="167" href="#167">167</a> <strong>public</strong> <strong>final</strong> Plugin getPlugin() { -<a name="168" href="#168">168</a> -<a name="169" href="#169">169</a> <strong>return</strong> plugin; -<a name="170" href="#170">170</a> } -<a name="171" href="#171">171</a> -<a name="172" href="#172">172</a> <em>/**<em>*</em></em> -<a name="173" href="#173">173</a> <em> * @param plugin The plugin to set.</em> -<a name="174" href="#174">174</a> <em> */</em> -<a name="175" href="#175">175</a> <strong>public</strong> <strong>final</strong> <strong>void</strong> setPlugin(Plugin plugin) { -<a name="176" href="#176">176</a> -<a name="177" href="#177">177</a> Plugin oldValue = <strong>this</strong>.plugin; -<a name="178" href="#178">178</a> <strong>this</strong>.plugin = plugin; -<a name="179" href="#179">179</a> firePropertyChange(<span class="string">"plugin"</span>, oldValue, <strong>this</strong>.plugin); -<a name="180" href="#180">180</a> } -<a name="181" href="#181">181</a> -<a name="182" href="#182">182</a> <em>/**<em>*</em></em> -<a name="183" href="#183">183</a> <em> * @author psmith</em> -<a name="184" href="#184">184</a> <em> *</em> -<a name="185" href="#185">185</a> <em> */</em> -<a name="186" href="#186">186</a> <strong>private</strong> <strong>class</strong> PluginTableCellEditor <strong>extends</strong> AbstractCellEditor -<a name="187" href="#187">187</a> implements TableCellEditor { -<a name="188" href="#188">188</a> -<a name="189" href="#189">189</a> <strong>private</strong> Map editorMap = <strong>new</strong> HashMap(); -<a name="190" href="#190">190</a> <strong>private</strong> DefaultCellEditor defaultEditor = <strong>new</strong> DefaultCellEditor( -<a name="191" href="#191">191</a> <strong>new</strong> JTextField()); -<a name="192" href="#192">192</a> <strong>private</strong> DefaultCellEditor currentEditor = defaultEditor; -<a name="193" href="#193">193</a> -<a name="194" href="#194">194</a> <strong>private</strong> PluginTableCellEditor() { -<a name="195" href="#195">195</a> -<a name="196" href="#196">196</a> editorMap.put(Boolean.<strong>class</strong>, -<a name="197" href="#197">197</a> TableCellEditorFactory.createBooleanTableCellEditor()); -<a name="198" href="#198">198</a> editorMap.put(Level.<strong>class</strong>, -<a name="199" href="#199">199</a> TableCellEditorFactory.createLevelTableCellEditor()); -<a name="200" href="#200">200</a> <em class="comment">//support primitive boolean parameters with the appropriate editor</em> -<a name="201" href="#201">201</a> editorMap.put(<strong>boolean</strong>.<strong>class</strong>, TableCellEditorFactory.createBooleanTableCellEditor()); -<a name="202" href="#202">202</a> } -<a name="203" href="#203">203</a> -<a name="204" href="#204">204</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="205" href="#205">205</a> <em class="comment"> * @see javax.swing.table.TableCellEditor#getTableCellEditorComponent(javax.swing.JTable, java.lang.Object, boolean, int, int)</em> -<a name="206" href="#206">206</a> <em class="comment"> */</em> -<a name="207" href="#207">207</a> <strong>public</strong> Component getTableCellEditorComponent(JTable table, Object value, -<a name="208" href="#208">208</a> <strong>boolean</strong> isSelected, <strong>int</strong> row, <strong>int</strong> column) { -<a name="209" href="#209">209</a> -<a name="210" href="#210">210</a> PluginPropertyTableModel model = (PluginPropertyTableModel) table.getModel(); -<a name="211" href="#211">211</a> PropertyDescriptor descriptor = model.getDescriptors()[row]; -<a name="212" href="#212">212</a> Class valueClass = descriptor.getPropertyType(); -<a name="213" href="#213">213</a> -<a name="214" href="#214">214</a> <strong>if</strong> (editorMap.containsKey(valueClass)) { -<a name="215" href="#215">215</a> -<a name="216" href="#216">216</a> DefaultCellEditor editor = -<a name="217" href="#217">217</a> (DefaultCellEditor) editorMap.get(valueClass); -<a name="218" href="#218">218</a> logger.debug(<span class="string">"Located CellEditor for "</span> + valueClass); -<a name="219" href="#219">219</a> currentEditor = editor; -<a name="220" href="#220">220</a> -<a name="221" href="#221">221</a> <strong>return</strong> currentEditor.getTableCellEditorComponent(table, value, -<a name="222" href="#222">222</a> isSelected, row, column); -<a name="223" href="#223">223</a> } -<a name="224" href="#224">224</a> -<a name="225" href="#225">225</a> currentEditor = defaultEditor; -<a name="226" href="#226">226</a> logger.debug(<span class="string">"Cell value class "</span> + valueClass + -<a name="227" href="#227">227</a> <span class="string">" not know, using default editor"</span>); -<a name="228" href="#228">228</a> -<a name="229" href="#229">229</a> <strong>return</strong> defaultEditor.getTableCellEditorComponent(table, value, -<a name="230" href="#230">230</a> isSelected, row, column); -<a name="231" href="#231">231</a> } -<a name="232" href="#232">232</a> -<a name="233" href="#233">233</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="234" href="#234">234</a> <em class="comment"> * @see javax.swing.CellEditor#getCellEditorValue()</em> -<a name="235" href="#235">235</a> <em class="comment"> */</em> -<a name="236" href="#236">236</a> <strong>public</strong> Object getCellEditorValue() { -<a name="237" href="#237">237</a> -<a name="238" href="#238">238</a> <strong>return</strong> currentEditor.getCellEditorValue(); -<a name="239" href="#239">239</a> } -<a name="240" href="#240">240</a> -<a name="241" href="#241">241</a> } -<a name="242" href="#242">242</a> -<a name="243" href="#243">243</a> <strong>private</strong> <strong>static</strong> <strong>class</strong> PluginPropertyTableModel <strong>extends</strong> AbstractTableModel { -<a name="244" href="#244">244</a> -<a name="245" href="#245">245</a> <strong>private</strong> <strong>final</strong> PropertyDescriptor[] descriptors; -<a name="246" href="#246">246</a> <strong>private</strong> <strong>final</strong> Plugin plugin; -<a name="247" href="#247">247</a> -<a name="248" href="#248">248</a> <strong>private</strong> PluginPropertyTableModel(Plugin p) -<a name="249" href="#249">249</a> throws IntrospectionException { -<a name="250" href="#250">250</a> <strong>super</strong>(); -<a name="251" href="#251">251</a> -<a name="252" href="#252">252</a> BeanInfo beanInfo = Introspector.getBeanInfo(p.getClass()); -<a name="253" href="#253">253</a> -<a name="254" href="#254">254</a> List list = <strong>new</strong> ArrayList(Arrays.asList( -<a name="255" href="#255">255</a> beanInfo.getPropertyDescriptors())); -<a name="256" href="#256">256</a> -<a name="257" href="#257">257</a> Collections.sort(list, <strong>new</strong> Comparator() { -<a name="258" href="#258">258</a> -<a name="259" href="#259">259</a> <strong>public</strong> <strong>int</strong> compare(Object o1, Object o2) { -<a name="260" href="#260">260</a> -<a name="261" href="#261">261</a> PropertyDescriptor d1 = (PropertyDescriptor) o1; -<a name="262" href="#262">262</a> PropertyDescriptor d2 = (PropertyDescriptor) o2; -<a name="263" href="#263">263</a> -<a name="264" href="#264">264</a> <strong>return</strong> d1.getDisplayName().compareToIgnoreCase( -<a name="265" href="#265">265</a> d2.getDisplayName()); -<a name="266" href="#266">266</a> } -<a name="267" href="#267">267</a> }); -<a name="268" href="#268">268</a> <strong>this</strong>.plugin = p; -<a name="269" href="#269">269</a> <strong>this</strong>.descriptors = (PropertyDescriptor[]) list.toArray( -<a name="270" href="#270">270</a> <strong>new</strong> PropertyDescriptor[0]); -<a name="271" href="#271">271</a> } -<a name="272" href="#272">272</a> -<a name="273" href="#273">273</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="274" href="#274">274</a> <em class="comment"> * @see javax.swing.table.AbstractTableModel#getValueAt(int, int)</em> -<a name="275" href="#275">275</a> <em class="comment"> */</em> -<a name="276" href="#276">276</a> <strong>public</strong> Object getValueAt(<strong>int</strong> row, <strong>int</strong> col) { -<a name="277" href="#277">277</a> -<a name="278" href="#278">278</a> PropertyDescriptor d = descriptors[row]; -<a name="279" href="#279">279</a> -<a name="280" href="#280">280</a> <strong>switch</strong> (col) { -<a name="281" href="#281">281</a> -<a name="282" href="#282">282</a> <strong>case</strong> 1: -<a name="283" href="#283">283</a> -<a name="284" href="#284">284</a> <strong>try</strong> { -<a name="285" href="#285">285</a> -<a name="286" href="#286">286</a> Object object = d.getReadMethod().invoke(plugin, -<a name="287" href="#287">287</a> <strong>new</strong> Object[0]); -<a name="288" href="#288">288</a> -<a name="289" href="#289">289</a> <strong>if</strong> (object != <strong>null</strong>) { -<a name="290" href="#290">290</a> -<a name="291" href="#291">291</a> <strong>return</strong> object; -<a name="292" href="#292">292</a> } -<a name="293" href="#293">293</a> } <strong>catch</strong> (Exception e) { -<a name="294" href="#294">294</a> logger.error( -<a name="295" href="#295">295</a> <span class="string">"Error reading value for PropertyDescriptor "</span> + d); -<a name="296" href="#296">296</a> } -<a name="297" href="#297">297</a> -<a name="298" href="#298">298</a> <strong>return</strong> <span class="string">""</span>; -<a name="299" href="#299">299</a> -<a name="300" href="#300">300</a> <strong>case</strong> 0: -<a name="301" href="#301">301</a> <strong>return</strong> d.getName(); -<a name="302" href="#302">302</a> } -<a name="303" href="#303">303</a> -<a name="304" href="#304">304</a> <strong>return</strong> <strong>null</strong>; -<a name="305" href="#305">305</a> } -<a name="306" href="#306">306</a> -<a name="307" href="#307">307</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="308" href="#308">308</a> <em class="comment"> * @see javax.swing.table.AbstractTableModel#getColumnCount()</em> -<a name="309" href="#309">309</a> <em class="comment"> */</em> -<a name="310" href="#310">310</a> <strong>public</strong> <strong>int</strong> getColumnCount() { -<a name="311" href="#311">311</a> -<a name="312" href="#312">312</a> <strong>return</strong> 2; -<a name="313" href="#313">313</a> } -<a name="314" href="#314">314</a> -<a name="315" href="#315">315</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="316" href="#316">316</a> <em class="comment"> * @see javax.swing.table.AbstractTableModel#getRowCount()</em> -<a name="317" href="#317">317</a> <em class="comment"> */</em> -<a name="318" href="#318">318</a> <strong>public</strong> <strong>int</strong> getRowCount() { -<a name="319" href="#319">319</a> -<a name="320" href="#320">320</a> <strong>return</strong> descriptors.length; -<a name="321" href="#321">321</a> } -<a name="322" href="#322">322</a> -<a name="323" href="#323">323</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="324" href="#324">324</a> <em class="comment"> * @see javax.swing.table.TableModel#isCellEditable(int, int)</em> -<a name="325" href="#325">325</a> <em class="comment"> */</em> -<a name="326" href="#326">326</a> <strong>public</strong> <strong>boolean</strong> isCellEditable(<strong>int</strong> rowIndex, <strong>int</strong> columnIndex) { -<a name="327" href="#327">327</a> -<a name="328" href="#328">328</a> <em class="comment">// TODO Determine if the property is one of the ones a User could edit</em> -<a name="329" href="#329">329</a> <strong>if</strong> (columnIndex == 1) { -<a name="330" href="#330">330</a> -<a name="331" href="#331">331</a> <strong>return</strong> descriptors[rowIndex].getWriteMethod() != <strong>null</strong>; -<a name="332" href="#332">332</a> } -<a name="333" href="#333">333</a> -<a name="334" href="#334">334</a> <strong>return</strong> false; -<a name="335" href="#335">335</a> } -<a name="336" href="#336">336</a> -<a name="337" href="#337">337</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="338" href="#338">338</a> <em class="comment"> * @see javax.swing.table.TableModel#getColumnName(int)</em> -<a name="339" href="#339">339</a> <em class="comment"> */</em> -<a name="340" href="#340">340</a> <strong>public</strong> String getColumnName(<strong>int</strong> column) { -<a name="341" href="#341">341</a> -<a name="342" href="#342">342</a> <strong>return</strong> (column == 0) ? <span class="string">"Property"</span> : <span class="string">"Value"</span>; -<a name="343" href="#343">343</a> } -<a name="344" href="#344">344</a> -<a name="345" href="#345">345</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> -<a name="346" href="#346">346</a> <em class="comment"> * @see javax.swing.table.TableModel#setValueAt(java.lang.Object, int, int)</em> -<a name="347" href="#347">347</a> <em class="comment"> */</em> -<a name="348" href="#348">348</a> <strong>public</strong> <strong>void</strong> setValueAt(Object aValue, <strong>int</strong> rowIndex, <strong>int</strong> columnIndex) { +<a name="161" href="#161">161</a> } +<a name="162" href="#162">162</a> +<a name="163" href="#163">163</a> <em>/**<em>*</em></em> +<a name="164" href="#164">164</a> <em> * @return Returns the plugin.</em> +<a name="165" href="#165">165</a> <em> */</em> +<a name="166" href="#166">166</a> <strong>public</strong> <strong>final</strong> Plugin getPlugin() { +<a name="167" href="#167">167</a> +<a name="168" href="#168">168</a> <strong>return</strong> plugin; +<a name="169" href="#169">169</a> } +<a name="170" href="#170">170</a> +<a name="171" href="#171">171</a> <em>/**<em>*</em></em> +<a name="172" href="#172">172</a> <em> * @param plugin The plugin to set.</em> +<a name="173" href="#173">173</a> <em> */</em> +<a name="174" href="#174">174</a> <strong>public</strong> <strong>final</strong> <strong>void</strong> setPlugin(Plugin plugin) { +<a name="175" href="#175">175</a> +<a name="176" href="#176">176</a> Plugin oldValue = <strong>this</strong>.plugin; +<a name="177" href="#177">177</a> <strong>this</strong>.plugin = plugin; +<a name="178" href="#178">178</a> firePropertyChange(<span class="string">"plugin"</span>, oldValue, <strong>this</strong>.plugin); +<a name="179" href="#179">179</a> } +<a name="180" href="#180">180</a> +<a name="181" href="#181">181</a> <em>/**<em>*</em></em> +<a name="182" href="#182">182</a> <em> * @author psmith</em> +<a name="183" href="#183">183</a> <em> *</em> +<a name="184" href="#184">184</a> <em> */</em> +<a name="185" href="#185">185</a> <strong>private</strong> <strong>class</strong> PluginTableCellEditor <strong>extends</strong> AbstractCellEditor +<a name="186" href="#186">186</a> implements TableCellEditor { +<a name="187" href="#187">187</a> +<a name="188" href="#188">188</a> <strong>private</strong> Map editorMap = <strong>new</strong> HashMap(); +<a name="189" href="#189">189</a> <strong>private</strong> DefaultCellEditor defaultEditor = <strong>new</strong> DefaultCellEditor( +<a name="190" href="#190">190</a> <strong>new</strong> JTextField()); +<a name="191" href="#191">191</a> <strong>private</strong> DefaultCellEditor currentEditor = defaultEditor; +<a name="192" href="#192">192</a> +<a name="193" href="#193">193</a> <strong>private</strong> PluginTableCellEditor() { +<a name="194" href="#194">194</a> +<a name="195" href="#195">195</a> editorMap.put(Boolean.<strong>class</strong>, +<a name="196" href="#196">196</a> TableCellEditorFactory.createBooleanTableCellEditor()); +<a name="197" href="#197">197</a> editorMap.put(Level.<strong>class</strong>, +<a name="198" href="#198">198</a> TableCellEditorFactory.createLevelTableCellEditor()); +<a name="199" href="#199">199</a> <em class="comment">//support primitive boolean parameters with the appropriate editor</em> +<a name="200" href="#200">200</a> editorMap.put(<strong>boolean</strong>.<strong>class</strong>, TableCellEditorFactory.createBooleanTableCellEditor()); +<a name="201" href="#201">201</a> } +<a name="202" href="#202">202</a> +<a name="203" href="#203">203</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="204" href="#204">204</a> <em class="comment"> * @see javax.swing.table.TableCellEditor#getTableCellEditorComponent(javax.swing.JTable, java.lang.Object, boolean, int, int)</em> +<a name="205" href="#205">205</a> <em class="comment"> */</em> +<a name="206" href="#206">206</a> <strong>public</strong> Component getTableCellEditorComponent(JTable table, Object value, +<a name="207" href="#207">207</a> <strong>boolean</strong> isSelected, <strong>int</strong> row, <strong>int</strong> column) { +<a name="208" href="#208">208</a> +<a name="209" href="#209">209</a> PluginPropertyTableModel model = (PluginPropertyTableModel) table.getModel(); +<a name="210" href="#210">210</a> PropertyDescriptor descriptor = model.getDescriptors()[row]; +<a name="211" href="#211">211</a> Class valueClass = descriptor.getPropertyType(); +<a name="212" href="#212">212</a> +<a name="213" href="#213">213</a> <strong>if</strong> (editorMap.containsKey(valueClass)) { +<a name="214" href="#214">214</a> +<a name="215" href="#215">215</a> DefaultCellEditor editor = +<a name="216" href="#216">216</a> (DefaultCellEditor) editorMap.get(valueClass); +<a name="217" href="#217">217</a> logger.debug(<span class="string">"Located CellEditor for "</span> + valueClass); +<a name="218" href="#218">218</a> currentEditor = editor; +<a name="219" href="#219">219</a> +<a name="220" href="#220">220</a> <strong>return</strong> currentEditor.getTableCellEditorComponent(table, value, +<a name="221" href="#221">221</a> isSelected, row, column); +<a name="222" href="#222">222</a> } +<a name="223" href="#223">223</a> +<a name="224" href="#224">224</a> currentEditor = defaultEditor; +<a name="225" href="#225">225</a> logger.debug(<span class="string">"Cell value class "</span> + valueClass + +<a name="226" href="#226">226</a> <span class="string">" not know, using default editor"</span>); +<a name="227" href="#227">227</a> +<a name="228" href="#228">228</a> <strong>return</strong> defaultEditor.getTableCellEditorComponent(table, value, +<a name="229" href="#229">229</a> isSelected, row, column); +<a name="230" href="#230">230</a> } +<a name="231" href="#231">231</a> +<a name="232" href="#232">232</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="233" href="#233">233</a> <em class="comment"> * @see javax.swing.CellEditor#getCellEditorValue()</em> +<a name="234" href="#234">234</a> <em class="comment"> */</em> +<a name="235" href="#235">235</a> <strong>public</strong> Object getCellEditorValue() { +<a name="236" href="#236">236</a> +<a name="237" href="#237">237</a> <strong>return</strong> currentEditor.getCellEditorValue(); +<a name="238" href="#238">238</a> } +<a name="239" href="#239">239</a> +<a name="240" href="#240">240</a> } +<a name="241" href="#241">241</a> +<a name="242" href="#242">242</a> <strong>private</strong> <strong>static</strong> <strong>class</strong> PluginPropertyTableModel <strong>extends</strong> AbstractTableModel { +<a name="243" href="#243">243</a> +<a name="244" href="#244">244</a> <strong>private</strong> <strong>final</strong> PropertyDescriptor[] descriptors; +<a name="245" href="#245">245</a> <strong>private</strong> <strong>final</strong> Plugin plugin; +<a name="246" href="#246">246</a> +<a name="247" href="#247">247</a> <strong>private</strong> PluginPropertyTableModel(Plugin p) +<a name="248" href="#248">248</a> throws IntrospectionException { +<a name="249" href="#249">249</a> <strong>super</strong>(); +<a name="250" href="#250">250</a> +<a name="251" href="#251">251</a> BeanInfo beanInfo = Introspector.getBeanInfo(p.getClass()); +<a name="252" href="#252">252</a> +<a name="253" href="#253">253</a> List list = <strong>new</strong> ArrayList(Arrays.asList( +<a name="254" href="#254">254</a> beanInfo.getPropertyDescriptors())); +<a name="255" href="#255">255</a> +<a name="256" href="#256">256</a> Collections.sort(list, <strong>new</strong> Comparator() { +<a name="257" href="#257">257</a> +<a name="258" href="#258">258</a> <strong>public</strong> <strong>int</strong> compare(Object o1, Object o2) { +<a name="259" href="#259">259</a> +<a name="260" href="#260">260</a> PropertyDescriptor d1 = (PropertyDescriptor) o1; +<a name="261" href="#261">261</a> PropertyDescriptor d2 = (PropertyDescriptor) o2; +<a name="262" href="#262">262</a> +<a name="263" href="#263">263</a> <strong>return</strong> d1.getDisplayName().compareToIgnoreCase( +<a name="264" href="#264">264</a> d2.getDisplayName()); +<a name="265" href="#265">265</a> } +<a name="266" href="#266">266</a> }); +<a name="267" href="#267">267</a> <strong>this</strong>.plugin = p; +<a name="268" href="#268">268</a> <strong>this</strong>.descriptors = (PropertyDescriptor[]) list.toArray( +<a name="269" href="#269">269</a> <strong>new</strong> PropertyDescriptor[0]); +<a name="270" href="#270">270</a> } +<a name="271" href="#271">271</a> +<a name="272" href="#272">272</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="273" href="#273">273</a> <em class="comment"> * @see javax.swing.table.AbstractTableModel#getValueAt(int, int)</em> +<a name="274" href="#274">274</a> <em class="comment"> */</em> +<a name="275" href="#275">275</a> <strong>public</strong> Object getValueAt(<strong>int</strong> row, <strong>int</strong> col) { +<a name="276" href="#276">276</a> +<a name="277" href="#277">277</a> PropertyDescriptor d = descriptors[row]; +<a name="278" href="#278">278</a> +<a name="279" href="#279">279</a> <strong>switch</strong> (col) { +<a name="280" href="#280">280</a> +<a name="281" href="#281">281</a> <strong>case</strong> 1: +<a name="282" href="#282">282</a> +<a name="283" href="#283">283</a> <strong>try</strong> { +<a name="284" href="#284">284</a> +<a name="285" href="#285">285</a> Object object = d.getReadMethod().invoke(plugin, +<a name="286" href="#286">286</a> <strong>new</strong> Object[0]); +<a name="287" href="#287">287</a> +<a name="288" href="#288">288</a> <strong>if</strong> (object != <strong>null</strong>) { +<a name="289" href="#289">289</a> +<a name="290" href="#290">290</a> <strong>return</strong> object; +<a name="291" href="#291">291</a> } +<a name="292" href="#292">292</a> } <strong>catch</strong> (Exception e) { +<a name="293" href="#293">293</a> logger.error( +<a name="294" href="#294">294</a> <span class="string">"Error reading value for PropertyDescriptor "</span> + d); +<a name="295" href="#295">295</a> } +<a name="296" href="#296">296</a> +<a name="297" href="#297">297</a> <strong>return</strong> <span class="string">""</span>; +<a name="298" href="#298">298</a> +<a name="299" href="#299">299</a> <strong>case</strong> 0: +<a name="300" href="#300">300</a> <strong>return</strong> d.getName(); +<a name="301" href="#301">301</a> } +<a name="302" href="#302">302</a> +<a name="303" href="#303">303</a> <strong>return</strong> <strong>null</strong>; +<a name="304" href="#304">304</a> } +<a name="305" href="#305">305</a> +<a name="306" href="#306">306</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="307" href="#307">307</a> <em class="comment"> * @see javax.swing.table.AbstractTableModel#getColumnCount()</em> +<a name="308" href="#308">308</a> <em class="comment"> */</em> +<a name="309" href="#309">309</a> <strong>public</strong> <strong>int</strong> getColumnCount() { +<a name="310" href="#310">310</a> +<a name="311" href="#311">311</a> <strong>return</strong> 2; +<a name="312" href="#312">312</a> } +<a name="313" href="#313">313</a> +<a name="314" href="#314">314</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="315" href="#315">315</a> <em class="comment"> * @see javax.swing.table.AbstractTableModel#getRowCount()</em> +<a name="316" href="#316">316</a> <em class="comment"> */</em> +<a name="317" href="#317">317</a> <strong>public</strong> <strong>int</strong> getRowCount() { +<a name="318" href="#318">318</a> +<a name="319" href="#319">319</a> <strong>return</strong> descriptors.length; +<a name="320" href="#320">320</a> } +<a name="321" href="#321">321</a> +<a name="322" href="#322">322</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="323" href="#323">323</a> <em class="comment"> * @see javax.swing.table.TableModel#isCellEditable(int, int)</em> +<a name="324" href="#324">324</a> <em class="comment"> */</em> +<a name="325" href="#325">325</a> <strong>public</strong> <strong>boolean</strong> isCellEditable(<strong>int</strong> rowIndex, <strong>int</strong> columnIndex) { +<a name="326" href="#326">326</a> +<a name="327" href="#327">327</a> <em class="comment">// TODO Determine if the property is one of the ones a User could edit</em> +<a name="328" href="#328">328</a> <strong>if</strong> (columnIndex == 1) { +<a name="329" href="#329">329</a> +<a name="330" href="#330">330</a> <strong>return</strong> descriptors[rowIndex].getWriteMethod() != <strong>null</strong>; +<a name="331" href="#331">331</a> } +<a name="332" href="#332">332</a> +<a name="333" href="#333">333</a> <strong>return</strong> false; +<a name="334" href="#334">334</a> } +<a name="335" href="#335">335</a> +<a name="336" href="#336">336</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="337" href="#337">337</a> <em class="comment"> * @see javax.swing.table.TableModel#getColumnName(int)</em> +<a name="338" href="#338">338</a> <em class="comment"> */</em> +<a name="339" href="#339">339</a> <strong>public</strong> String getColumnName(<strong>int</strong> column) { +<a name="340" href="#340">340</a> +<a name="341" href="#341">341</a> <strong>return</strong> (column == 0) ? <span class="string">"Property"</span> : <span class="string">"Value"</span>; +<a name="342" href="#342">342</a> } +<a name="343" href="#343">343</a> +<a name="344" href="#344">344</a> <em class="comment">/*<em class="comment"> (non-Javadoc)</em></em> +<a name="345" href="#345">345</a> <em class="comment"> * @see javax.swing.table.TableModel#setValueAt(java.lang.Object, int, int)</em> +<a name="346" href="#346">346</a> <em class="comment"> */</em> +<a name="347" href="#347">347</a> <strong>public</strong> <strong>void</strong> setValueAt(Object aValue, <strong>int</strong> rowIndex, <strong>int</strong> columnIndex) { +<a name="348" href="#348">348</a> <a name="349" href="#349">349</a> -<a name="350" href="#350">350</a> -<a name="351" href="#351">351</a> <strong>if</strong> (columnIndex == 1) { -<a name="352" href="#352">352</a> aValue = translateValueIfNeeded(rowIndex, aValue); -<a name="353" href="#353">353</a> logger.debug( -<a name="354" href="#354">354</a> <span class="string">"setValueAt, "</span> + rowIndex + <span class="string">", "</span> + columnIndex + -<a name="355" href="#355">355</a> <span class="string">", value="</span> + aValue + <span class="string">", valueClass"</span> + aValue.getClass()); -<a name="356" href="#356">356</a> -<a name="357" href="#357">357</a> <strong>try</strong> { -<a name="358" href="#358">358</a> descriptors[rowIndex].getWriteMethod().invoke(plugin, -<a name="359" href="#359">359</a> <strong>new</strong> Object[] { aValue }); -<a name="360" href="#360">360</a> fireTableCellUpdated(rowIndex, columnIndex); -<a name="361" href="#361">361</a> } <strong>catch</strong> (IllegalArgumentException e) { -<a name="362" href="#362">362</a> <em class="comment">// ignore</em> -<a name="363" href="#363">363</a> } <strong>catch</strong> (Exception e) { -<a name="364" href="#364">364</a> logger.error( -<a name="365" href="#365">365</a> <span class="string">"Failed to modify the Plugin because of Exception"</span>, e); -<a name="366" href="#366">366</a> } -<a name="367" href="#367">367</a> -<a name="368" href="#368">368</a> } <strong>else</strong> { -<a name="369" href="#369">369</a> <strong>super</strong>.setValueAt(aValue, rowIndex, columnIndex); -<a name="370" href="#370">370</a> } -<a name="371" href="#371">371</a> } -<a name="372" href="#372">372</a> -<a name="373" href="#373">373</a> <em>/**<em>*</em></em> -<a name="374" href="#374">374</a> <em> * @param columnIndex</em> -<a name="375" href="#375">375</a> <em> * @param value</em> -<a name="376" href="#376">376</a> <em> * @return</em> -<a name="377" href="#377">377</a> <em> */</em> -<a name="378" href="#378">378</a> <strong>private</strong> Object translateValueIfNeeded(<strong>int</strong> row, Object value) { -<a name="379" href="#379">379</a> -<a name="380" href="#380">380</a> <strong>if</strong> ((descriptors[row].getPropertyType() == <strong>int</strong>.<strong>class</strong>) || -<a name="381" href="#381">381</a> (descriptors[row].getPropertyType() == Integer.<strong>class</strong>)) { -<a name="382" href="#382">382</a> -<a name="383" href="#383">383</a> <strong>try</strong> { -<a name="384" href="#384">384</a> -<a name="385" href="#385">385</a> <strong>return</strong> Integer.valueOf(value.toString()); -<a name="386" href="#386">386</a> } <strong>catch</strong> (Exception e) { -<a name="387" href="#387">387</a> logger.error(<span class="string">"Failed to convert to Integer type"</span>); -<a name="388" href="#388">388</a> } -<a name="389" href="#389">389</a> } -<a name="390" href="#390">390</a> -<a name="391" href="#391">391</a> <strong>return</strong> value; -<a name="392" href="#392">392</a> } -<a name="393" href="#393">393</a> <em>/**<em>*</em></em> -<a name="394" href="#394">394</a> <em> * @return Returns the descriptors.</em> -<a name="395" href="#395">395</a> <em> */</em> -<a name="396" href="#396">396</a> <strong>public</strong> <strong>final</strong> PropertyDescriptor[] getDescriptors() { -<a name="397" href="#397">397</a> <strong>return</strong> descriptors; -<a name="398" href="#398">398</a> } -<a name="399" href="#399">399</a> } -<a name="400" href="#400">400</a> } +<a name="350" href="#350">350</a> <strong>if</strong> (columnIndex == 1) { +<a name="351" href="#351">351</a> aValue = translateValueIfNeeded(rowIndex, aValue); +<a name="352" href="#352">352</a> logger.debug( +<a name="353" href="#353">353</a> <span class="string">"setValueAt, "</span> + rowIndex + <span class="string">", "</span> + columnIndex + +<a name="354" href="#354">354</a> <span class="string">", value="</span> + aValue + <span class="string">", valueClass"</span> + aValue.getClass()); +<a name="355" href="#355">355</a> +<a name="356" href="#356">356</a> <strong>try</strong> { +<a name="357" href="#357">357</a> descriptors[rowIndex].getWriteMethod().invoke(plugin, +<a name="358" href="#358">358</a> <strong>new</strong> Object[] { aValue }); +<a name="359" href="#359">359</a> fireTableCellUpdated(rowIndex, columnIndex); +<a name="360" href="#360">360</a> } <strong>catch</strong> (IllegalArgumentException e) { +<a name="361" href="#361">361</a> <em class="comment">// ignore</em> +<a name="362" href="#362">362</a> } <strong>catch</strong> (Exception e) { +<a name="363" href="#363">363</a> logger.error( +<a name="364" href="#364">364</a> <span class="string">"Failed to modify the Plugin because of Exception"</span>, e); +<a name="365" href="#365">365</a> } +<a name="366" href="#366">366</a> +<a name="367" href="#367">367</a> } <strong>else</strong> { +<a name="368" href="#368">368</a> <strong>super</strong>.setValueAt(aValue, rowIndex, columnIndex); +<a name="369" href="#369">369</a> } +<a name="370" href="#370">370</a> } +<a name="371" href="#371">371</a> +<a name="372" href="#372">372</a> <em>/**<em>*</em></em> +<a name="373" href="#373">373</a> <em> * @param columnIndex</em> +<a name="374" href="#374">374</a> <em> * @param value</em> +<a name="375" href="#375">375</a> <em> * @return</em> +<a name="376" href="#376">376</a> <em> */</em> +<a name="377" href="#377">377</a> <strong>private</strong> Object translateValueIfNeeded(<strong>int</strong> row, Object value) { +<a name="378" href="#378">378</a> +<a name="379" href="#379">379</a> <strong>if</strong> ((descriptors[row].getPropertyType() == <strong>int</strong>.<strong>class</strong>) || +<a name="380" href="#380">380</a> (descriptors[row].getPropertyType() == Integer.<strong>class</strong>)) { +<a name="381" href="#381">381</a> +<a name="382" href="#382">382</a> <strong>try</strong> { +<a name="383" href="#383">383</a> +<a name="384" href="#384">384</a> <strong>return</strong> Integer.valueOf(value.toString()); +<a name="385" href="#385">385</a> } <strong>catch</strong> (Exception e) { +<a name="386" href="#386">386</a> logger.error(<span class="string">"Failed to convert to Integer type"</span>); +<a name="387" href="#387">387</a> } +<a name="388" href="#388">388</a> } +<a name="389" href="#389">389</a> +<a name="390" href="#390">390</a> <strong>return</strong> value; +<a name="391" href="#391">391</a> } +<a name="392" href="#392">392</a> <em>/**<em>*</em></em> +<a name="393" href="#393">393</a> <em> * @return Returns the descriptors.</em> +<a name="394" href="#394">394</a> <em> */</em> +<a name="395" href="#395">395</a> <strong>public</strong> <strong>final</strong> PropertyDescriptor[] getDescriptors() { +<a name="396" href="#396">396</a> <strong>return</strong> descriptors; +<a name="397" href="#397">397</a> } +<a name="398" href="#398">398</a> } +<a name="399" href="#399">399</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
