Procházet zdrojové kódy

246125: the SPLIT

tags/V1_6_3rc1
aclement před 15 roky
rodič
revize
bfdc895ca8
1 změnil soubory, kde provedl 19 přidání a 0 odebrání
  1. 19
    0
      asm/src/org/aspectj/asm/IRelationship.java

+ 19
- 0
asm/src/org/aspectj/asm/IRelationship.java Zobrazit soubor

@@ -61,6 +61,25 @@ public interface IRelationship extends Serializable {
|| this == DECLARE_SOFT;
}

public String getName() {
return name;
}

/**
* Return the Kind of the relationship that is passed in by name.
*
* @param stringFormOfRelationshipKind the relationship name, eg. 'declare warning', 'declare error', etc.
* @return the Kind instance
*/
public static Kind getKindFor(String stringFormOfRelationshipKind) {
for (int i = 0; i < ALL.length; i++) {
if (ALL[i].name.equals(stringFormOfRelationshipKind)) {
return ALL[i];
}
}
return null;
}

private Kind(String name) {
this.name = name;
}

Načítá se…
Zrušit
Uložit