1 <?xml version="1.0" encoding="UTF-8"?> 2 <?eclipse version="3.4"?> 3 <plugin> 4 <extension 5 id="findViewByIdPermissionsMarker" 6 name="markerName" 7 point="org.eclipse.core.resources.markers"> 8 <!-- if you don't use the 'name' attribute with the value 'App Validator Problem', your marker will stand out 9 from other App Validator markers, which is not indicated --> 10 <super 11 type="com.motorolamobility.preflighting.checkers.ui.appValidatorMarker"> 12 </super> 13 </extension> 14 <extension 15 point="org.eclipse.ui.ide.markerResolution"> 16 <markerResolutionGenerator 17 class="com.motorolamobility.preflighting.samplechecker.findviewbyid.quickfix.FindViewByIdMarkerGenerator" 18 markerType="com.motorolamobility.preflighting.samplechecker.findviewbyid.ui.findViewByIdPermissionsMarker"> 19 </markerResolutionGenerator> 20 </extension> 21 </plugin> 22