Instantiates a new aspect. @param name the name of the aspect @param aString the aspect string
(final String name, final String aString)
| 73 | * @param aString the aspect string |
| 74 | */ |
| 75 | public Aspect(final String name, final String aString) |
| 76 | { |
| 77 | Objects.requireNonNull(name, "Name for Aspect cannot be null"); |
| 78 | Objects.requireNonNull(aString, "Value for Aspect cannot be null"); |
| 79 | this.key = AspectName.getConstant(name); |
| 80 | |
| 81 | parseAspectString(aString); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Instantiates a new aspect. |
nothing calls this directly
no test coverage detected