1 11 package org.eclipse.ui.texteditor.spelling; 12 13 import org.eclipse.core.runtime.content.IContentType; 14 15 16 26 public class SpellingContext { 27 28 29 private IContentType fContentType; 30 31 34 public SpellingContext() { 35 } 36 37 42 public void setContentType(IContentType contentType) { 43 fContentType= contentType; 44 } 45 46 51 public IContentType getContentType() { 52 return fContentType; 53 } 54 } 55 | Popular Tags |