/***************************************************************************** * All public interface based on Starteam API are a property of Borland, * those interface are reproduced here only for testing purpose. You should * never use those interface to create a competitive product to the Starteam * Server. * * The implementation is given AS-IS and should not be considered a reference * to the API. The behavior on a lots of method and class will not be the * same as the real API. The reproduction only seek to mimic some basic * operation. You will not found anything here that can be deduced by using * the real API. * * Fake-Starteam is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *****************************************************************************/ package org.ossnoize.fakestarteam.builder; import java.io.IOException; import com.starbase.starteam.File; import com.starbase.starteam.Folder; import com.starbase.starteam.Item; import com.starbase.starteam.View; public abstract class CheckInInstruction { public abstract void checkin(View view) throws IOException; public abstract long getTimeOfCheckIn(); public Folder findFolderIn(Folder base, String name) { for(Folder f : base.getSubFolders()) { if(f.getName().equalsIgnoreCase(name)) { return f; } } return null; } public File findFileIn(Folder base, String name) { for(Item i : base.getItems(base.getTypeNames().FILE)) { File f = (File) i; if(f.getName().equals(name)) { return f; } } return null; } }