From: <ce...@us...> - 2004-01-13 17:03:54
|
Update of /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/outline In directory sc8-pr-cvs1:/tmp/cvs-serv28123/src/net/sourceforge/csseditor/internal/outline Modified Files: CssOutlinePage.java Log Message: Cleanup: javadoc fixes, unnecessary 'this' qualifiers removed Index: CssOutlinePage.java =================================================================== RCS file: /cvsroot/csseditor/net.sourceforge.csseditor/src/net/sourceforge/csseditor/internal/outline/CssOutlinePage.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** CssOutlinePage.java 13 Jan 2004 16:19:22 -0000 1.3 --- CssOutlinePage.java 13 Jan 2004 17:03:49 -0000 1.4 *************** *** 46,52 **** /** * Implements the outline page associated with the CSS editor. - * - * TODO Implement ordering by selector specificity - * (see http://www.w3.org/TR/CSS21/cascade.html#specificity) */ public class CssOutlinePage extends ContentOutlinePage { --- 46,49 ---- *************** *** 97,102 **** // Action Implementation ----------------------------------------------- ! /** ! * @see Action.run() */ public void run() { --- 94,99 ---- // Action Implementation ----------------------------------------------- ! /* ! * @see org.eclipse.jface.action.Action#run() */ public void run() { *************** *** 131,136 **** /** ! * This action toggles whether this Java Outline page links ! * its selection to the active editor. */ private class ToggleLinkingAction extends ResourceAction { --- 128,133 ---- /** ! * This action toggles whether this Java Outline page links its selection ! * to the active editor. */ private class ToggleLinkingAction extends ResourceAction { *************** *** 148,153 **** } ! /** ! * Runs the action. */ public void run() { --- 145,150 ---- } ! /* ! * @see org.eclipse.jface.action.Action#run() */ public void run() { *************** *** 169,173 **** new Runnable() { public void run() { ! CssOutlinePage.this.editor.synchronizeOutlinePage(); } }); --- 166,170 ---- new Runnable() { public void run() { ! editor.synchronizeOutlinePage(); } }); *************** *** 207,211 **** // ContentOutlinePage Implementation --------------------------------------- ! /** * @see org.eclipse.ui.part.IPage#createControl(Composite) */ --- 204,208 ---- // ContentOutlinePage Implementation --------------------------------------- ! /* * @see org.eclipse.ui.part.IPage#createControl(Composite) */ *************** *** 219,223 **** } ! /** * @see org.eclipse.ui.part.IPage#dispose() */ --- 216,220 ---- } ! /* * @see org.eclipse.ui.part.IPage#dispose() */ *************** *** 230,234 **** } ! /** * @see org.eclipse.ui.part.IPageBookViewPage#init(org.eclipse.ui.part.IPageSite) */ --- 227,231 ---- } ! /* * @see org.eclipse.ui.part.IPageBookViewPage#init(org.eclipse.ui.part.IPageSite) */ *************** *** 243,247 **** } ! /** * @see org.eclipse.ui.part.Page#makeContributions(IMenuManager, IToolBarManager, IStatusLineManager) */ --- 240,244 ---- } ! /* * @see org.eclipse.ui.part.Page#makeContributions(IMenuManager, IToolBarManager, IStatusLineManager) */ |