We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm implementing a custom pattern function which implements PatternFunction to visit pattern (element, attributes, etc pattern) to support XML completion based on RelaxNG similar to https://github.com/relaxng/jing-trang/blob/master/mod/pattern/src/main/com/thaiopensource/relaxng/pattern/DefaultValuesExtractor.java but I need to create my class in the com.thaiopensource.relaxng.pattern package because all classes which extends Pattern are not public
com.thaiopensource.relaxng.pattern
jing-trang/mod/pattern/src/main/com/thaiopensource/relaxng/pattern/ElementPattern.java
Line 6 in 84ec6ad
I wonder why there is this restriction? Is it possible to add a public modifier for ElementPattern and other classes?
The text was updated successfully, but these errors were encountered:
I'm not aware of any compelling reason for them not to be public.
Sorry, something went wrong.
Thanks @ndw for your answer. I will create a PR to fix this issue.
No branches or pull requests
I'm implementing a custom pattern function which implements PatternFunction to visit pattern (element, attributes, etc pattern) to support XML completion based on RelaxNG similar to
https://github.com/relaxng/jing-trang/blob/master/mod/pattern/src/main/com/thaiopensource/relaxng/pattern/DefaultValuesExtractor.java but I need to create my class in the
com.thaiopensource.relaxng.pattern
package because all classes which extends Pattern are not publicjing-trang/mod/pattern/src/main/com/thaiopensource/relaxng/pattern/ElementPattern.java
Line 6 in 84ec6ad
I wonder why there is this restriction? Is it possible to add a public modifier for ElementPattern and other classes?
The text was updated successfully, but these errors were encountered: