1 11 package org.eclipse.jdt.internal.ui.preferences.formatter; 12 13 import org.eclipse.jdt.internal.ui.preferences.formatter.ProfileManager.CustomProfile; 14 15 public interface IProfileVersioner { 16 17 public int getFirstVersion(); 18 19 public int getCurrentVersion(); 20 21 public String getProfileKind(); 22 23 27 public void update(CustomProfile profile); 28 29 } 30 | Popular Tags |