-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Fred Bricon <[email protected]>
- Loading branch information
Showing
29 changed files
with
759 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
projects/lsp4mp/projects/maven/config-hover/src/main/java/org/acme/config/MyAnnotation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.acme.config; | ||
|
||
public @interface MyAnnotation { | ||
|
||
public static String MY_STRING = "asdf"; | ||
|
||
public String value() default MY_STRING; | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
projects/lsp4mp/projects/maven/config-hover/src/main/java/org/acme/config/MyEnum.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.acme.config; | ||
|
||
public enum MyEnum { | ||
|
||
VALUE; | ||
|
||
public static String MY_STRING = "asdf"; | ||
|
||
public void helloWorld(); | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
projects/lsp4mp/projects/maven/config-hover/src/main/java/org/acme/config/MyInterface.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.acme.config; | ||
|
||
public interface MyInterface { | ||
|
||
public static String MY_STRING = "asdf"; | ||
|
||
public void helloWorld(); | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
projects/lsp4mp/projects/maven/config-hover/src/main/java/org/acme/config/MyNestedClass.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.acme.config; | ||
|
||
@Singleton | ||
public class MyNestedClass { | ||
|
||
@Singleton | ||
static class MyNestedNestedClass { | ||
|
||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
projects/lsp4mp/projects/maven/config-hover/src/main/java/org/acme/config/WithLombok.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.acme.config; | ||
|
||
import lombok.NoArgsConstructor; | ||
|
||
@NoArgsConstructor | ||
public class WithLombok { | ||
|
||
public String myField; | ||
|
||
WithLombok(String myField) { | ||
this.myField = myField; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.