-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
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
java: URI for links to java classes potentially without source #31
Comments
Supported syntax: java:/[#]. Couldn't use java: without /, since the PlantUML library didn't recognize it as a proper link. |
Defined extension point to avoid dependency to jdt in generic link handling code. |
Do you wish that the PlantUML library supports syntax [[java:linkWithoutStartingSlash]] ? |
Yes, it would be nice if the library supported the more generic URI syntax, which allows java:linkWithoutStartingSlash! |
I'm getting confused because the following example is working for us:
Could you give a non-working example ? Thanks! |
class Links [[java:java.lang.String]] didn't work, but class Links [[java:/java.lang.String]] did. |
My mistake, some other code choked when the URI didn't have a path and stopped the java link without slash from working. So now the / is optional. |
The platform scheme can be used to link to classes within eclipse, but only if you know the path. A java scheme could be used to link to any java class, and using org.eclipse.jdt.internal.debug.ui.actions.OpenTypeAction to find the path.
The text was updated successfully, but these errors were encountered: