-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce22e5d
commit 33dcebe
Showing
82 changed files
with
3,495 additions
and
430 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* @description This is a new class that does foo and bar and references {@link Baz}. | ||
*/ | ||
public class AccountService { | ||
public void newMethod() { | ||
System.debug('Hello workd!'); | ||
} | ||
} |
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 @@ | ||
public interface IAnotherExample {} |
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,3 @@ | ||
public interface IExemplificable { | ||
public void exampleMethod(); | ||
} |
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,5 @@ | ||
public enum PossibleValues { | ||
VALUE1, | ||
VALUE2, | ||
VALUE3 | ||
} |
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 @@ | ||
public class SolidService { | ||
public void doSomething() { | ||
// do something | ||
} | ||
|
||
public void newMethod() { | ||
// new method | ||
} | ||
} |
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,38 @@ | ||
# Changelog | ||
|
||
## New Classes | ||
|
||
These classes are new. | ||
|
||
### AccountService | ||
|
||
This is a new class that does foo and bar and references Baz . | ||
|
||
## New Interfaces | ||
|
||
These interfaces are new. | ||
|
||
### IAnotherExample | ||
|
||
### IExemplificable | ||
|
||
## New Enums | ||
|
||
These enums are new. | ||
|
||
### PossibleValues | ||
|
||
## Removed Types | ||
|
||
These types have been removed. | ||
|
||
- OldImplementation | ||
|
||
## New or Modified Members in Existing Types | ||
|
||
These members have been added or modified. | ||
|
||
### SolidService | ||
|
||
- New Method: newMethod | ||
- Removed Method: deprecatedMethod |
Oops, something went wrong.