This is an automated email from the git hooks/post-receive script. ben pushed a commit to branch master in repository autocomplete.
commit 2a9e8e07e354a14ebc5ee4afed55bc5c5506de7a Author: bobbylight <[email protected]> Date: Mon Jul 11 03:56:21 2011 +0000 Start of JspLanguageSupport. --- src/org/fife/ui/autocomplete/MarkupTagCompletion.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/org/fife/ui/autocomplete/MarkupTagCompletion.java b/src/org/fife/ui/autocomplete/MarkupTagCompletion.java index 6d1d87b..619b9e9 100644 --- a/src/org/fife/ui/autocomplete/MarkupTagCompletion.java +++ b/src/org/fife/ui/autocomplete/MarkupTagCompletion.java @@ -96,6 +96,18 @@ public class MarkupTagCompletion extends AbstractCompletion { /** + * Returns all attributes of this tag. + * + * @return A list of {@link Parameter}s. + * @see #getAttribute(int) + * @see #getAttributeCount() + */ + public List getAttributes() { + return attrs; + } + + + /** * Returns the specified {@link ParameterizedCompletion.Parameter}. * * @param index The index of the attribute to retrieve. -- 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

