181182183184185186187188189190191
Install install = componentClass.getAnnotation(Install.class); if (install == null) { return Install.APPLICATION; } return install.precedence(); } public int compareTo(ComponentDescriptor other) { return other.getPrecedence() - getPrecedence();
165166167168169170171172173174175
144145146147148149150151152153154