1 package test.wksp.eclipse;
2 
3 
4 interface X02b {
5 /**
6 	 * @exception CoreException if this method fails. Reasons include:
7 	 * <ul>
8 	 * <li> This resource does not exist.</li>
9 	 * <li> An error happened while persisting this setting.</li>
10 	 * <li> Resource changes are disallowed during certain types of resource change
11 	 *       event notification. See {@link IResourceChangeEvent} for more details.</li>
12 	 * </ul>
13 	 */
setCharset(String newCharset, Object monitor)14 	public void setCharset(String newCharset, Object monitor)
15 			throws Exception;
16 
17 }
18