This is an automated email from the git hooks/post-receive script. ben pushed a commit to branch master in repository autocomplete.
commit e4c335a10fd6f77d6d8229a5178c37ae081bfc94 Author: bobbylight <[email protected]> Date: Sat Feb 6 05:31:57 2010 +0000 Fixing Ctrl+Space/Shift+Space issue in editor kit. --- .../ui/autocomplete/CompletionProviderBase.java | 22 +++++++++++++++++ .../fife/ui/autocomplete/CompletionXMLParser.java | 25 +++++++++++++++++++- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/src/org/fife/ui/autocomplete/CompletionProviderBase.java b/src/org/fife/ui/autocomplete/CompletionProviderBase.java index ac808c1..b49b70f 100644 --- a/src/org/fife/ui/autocomplete/CompletionProviderBase.java +++ b/src/org/fife/ui/autocomplete/CompletionProviderBase.java @@ -1,3 +1,25 @@ +/* + * 02/06/2010 + * + * CompletionProviderBase.java - Base completion provider implementation. + * Copyright (C) 2010 Robert Futrell + * robert_futrell at users.sourceforge.net + * http://fifesoft.com/rsyntaxtextarea + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ package org.fife.ui.autocomplete; import java.util.Collections; diff --git a/src/org/fife/ui/autocomplete/CompletionXMLParser.java b/src/org/fife/ui/autocomplete/CompletionXMLParser.java index 4ce1b2e..c4631ad 100644 --- a/src/org/fife/ui/autocomplete/CompletionXMLParser.java +++ b/src/org/fife/ui/autocomplete/CompletionXMLParser.java @@ -1,3 +1,26 @@ +/* + * 02/06/2010 + * + * CompletionXMLParser.java - Parses XML representing code completion for a + * C-like language. + * Copyright (C) 2010 Robert Futrell + * robert_futrell at users.sourceforge.net + * http://fifesoft.com/rsyntaxtextarea + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + */ package org.fife.ui.autocomplete; import java.util.ArrayList; @@ -12,7 +35,7 @@ import org.xml.sax.helpers.DefaultHandler; * @author Robert Futrell * @version 1.0 */ -class CompletionXMLParser extends DefaultHandler { +public class CompletionXMLParser extends DefaultHandler { /** * The completions found after parsing the XML. -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/autocomplete.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

