/** * Returns an instance of a TechnicalInformation object, containing detailed information about the * technical background of this class, e.g., paper reference or book this class is based on. * * @return the technical information about this class */ public TechnicalInformation getTechnicalInformation() { TechnicalInformation result; result = new TechnicalInformation(Type.BOOK); result.setValue(Field.AUTHOR, "Peter J. Rousseeuw and Annick M. Leroy"); result.setValue(Field.YEAR, "1987"); result.setValue(Field.TITLE, "Robust regression and outlier detection"); return result; }
/** * Returns an instance of a TechnicalInformation object, containing detailed information about the * technical background of this class, e.g., paper reference or book this class is based on. * * @return the technical information about this class */ public TechnicalInformation getTechnicalInformation() { TechnicalInformation result; result = new TechnicalInformation(Type.TECHREPORT); result.setValue(Field.AUTHOR, "Andrew Moore"); result.setValue(Field.YEAR, "1991"); result.setValue(Field.TITLE, "A tutorial on kd-trees"); result.setValue(Field.HOWPUBLISHED, "Extract from PhD Thesis"); result.setValue( Field.BOOKTITLE, "University of Cambridge Computer Laboratory Technical Report No. 209"); result.setValue(Field.HTTP, "http://www.autonlab.org/autonweb/14665.html"); return result; }