1 11 package org.eclipse.pde.internal.builders; 12 13 import org.eclipse.core.resources.*; 14 import org.eclipse.core.runtime.*; 15 16 public class SchemaMarkerFactory implements IMarkerFactory { 17 public static final String MARKER_ID = "org.eclipse.pde.validation-marker"; 21 public IMarker createMarker(IFile file) throws CoreException { 22 return file.createMarker(MARKER_ID); 23 } 24 } 25 | Popular Tags |