Basically I have implemented a Editor (let's say Editor_A) entry point. Everything works fine in gwt.
Then I implemented another entry point Editor_B with different widget layout. Now, I want to disable the entry point Editor_A, and let Editor_B up.
I modified the following things:
in Editor.html
I changed <script language="javascript" src="com.mycompany.Editor_A/com.mycompany.Editor_A.nocache.js"></script> to <script language="javascript" src="com.mycompany.Editor_B/com.mycompany.Editor_B.nocache.js"></script>
in Editor.gwt.xml
I changed <entry-point class="com.mycompany.Editor_A"/> to <entry-point class="com.mycompany.Editor_B"/>
However, I don't think the above changes are correct. Editor_A is gone, but Editor_B is not up and there is nothing in the web page.
Anyone can help me out?