1 11 12 package org.eclipse.pde.internal.core.icheatsheet.simple; 13 14 15 19 public interface ISimpleCS extends ISimpleCSObject { 20 21 25 public String getTitle(); 26 27 31 public void setTitle(String title); 32 33 37 public ISimpleCSIntro getIntro(); 38 39 43 public void setIntro(ISimpleCSIntro intro); 44 45 49 public ISimpleCSItem[] getItems(); 50 51 55 public void addItem(ISimpleCSItem item); 56 57 62 public void addItem(int index, ISimpleCSItem item); 63 64 68 public void removeItem(ISimpleCSItem item); 69 70 74 public void removeItem(int index); 75 76 81 public void moveItem(ISimpleCSItem item, int newRelativeIndex); 82 83 87 public boolean isFirstItem(ISimpleCSItem item); 88 89 93 public boolean isLastItem(ISimpleCSItem item); 94 95 99 public int indexOfItem(ISimpleCSItem item); 100 101 105 public int getItemCount(); 106 107 111 public boolean hasItems(); 112 113 118 public ISimpleCSItem getNextSibling(ISimpleCSItem item); 119 120 125 public ISimpleCSItem getPreviousSibling(ISimpleCSItem item); 126 127 } 128 | Popular Tags |