[Pydev-cvs] org.python.pydev/src/org/python/pydev/editor/actions PyAddBlockComment.java,1.1,1.2 PyAc
Brought to you by:
fabioz
From: <at...@us...> - 2004-03-05 22:19:08
|
Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11341/src/org/python/pydev/editor/actions Modified Files: PyAddBlockComment.java PyAction.java package.html Log Message: Refactoring of the fabioz changes Index: PyAddBlockComment.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/PyAddBlockComment.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PyAddBlockComment.java 28 Feb 2004 05:13:16 -0000 1.1 --- PyAddBlockComment.java 5 Mar 2004 22:04:44 -0000 1.2 *************** *** 21,25 **** /** ! * Create a block #===... * # * #===... --- 21,26 ---- /** ! * Insert a comment block. ! * #===... * # * #===... Index: PyAction.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/PyAction.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PyAction.java 5 Mar 2004 14:43:05 -0000 1.2 --- PyAction.java 5 Mar 2004 22:04:44 -0000 1.3 *************** *** 57,61 **** * @param doc * @param startLineIndex ! * @return * @throws BadLocationException */ --- 57,61 ---- * @param doc * @param startLineIndex ! * @return delimiter for the document (\n|\r\|r\n) * @throws BadLocationException */ *************** *** 71,75 **** /** * This function returns the text editor. - * @return */ protected ITextEditor getTextEditor() { --- 71,74 ---- *************** *** 133,137 **** * @param doc * @param cursorOffset ! * @return * @throws BadLocationException */ --- 132,136 ---- * @param doc * @param cursorOffset ! * @return position of the first character of the line * @throws BadLocationException */ *************** *** 197,201 **** //================================================================ ! /** * Beep...humm... yeah....beep....ehehheheh */ --- 196,200 ---- //================================================================ ! /* * Beep...humm... yeah....beep....ehehheheh */ Index: package.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/package.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** package.html 28 Feb 2004 05:13:16 -0000 1.1 --- package.html 5 Mar 2004 22:04:44 -0000 1.2 *************** *** 9,11 **** --- 9,12 ---- <li>If you are adding your action to top-level menus, see org.eclipse.ui.editorActions <li>If you adding your action to context popup, see org.eclipse.ui.popupMenus + <li>For keyboard shortcuts see org.eclipse.ui.commands </body> \ No newline at end of file |