1 package org.apache.maven.plugin.descriptor; 2 3 18 19 25 public class Requirement 26 { 27 private final String role; 28 29 private final String roleHint; 30 31 public Requirement( String role ) 32 { 33 this.role = role; 34 this.roleHint = null; 35 } 36 37 public Requirement( String role, String roleHint ) 38 { 39 this.role = role; 40 this.roleHint = roleHint; 41 } 42 43 public String getRole() 44 { 45 return role; 46 } 47 48 public String getRoleHint() 49 { 50 return roleHint; 51 } 52 } 53 | Popular Tags |