code
stringlengths
3
1.18M
language
stringclasses
1 value
package de.mpg.mpiz.koeln.anna.serverimpl; import java.util.concurrent.Callable; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.koeln.anna.core.events.StepStateChangeEvent; import de.mpg.mpiz.koeln.anna.server.Server; import de.mpg.mpiz.koeln.anna.step.AnnaStep; import de.mpg.mpiz.koeln....
Java
package de.mpg.mpiz.koeln.anna.server; import de.mpg.mpiz.koeln.anna.step.ExecutableStep; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface ExecutorServer extends Server { void registerStep(ExecutableStep step); void unregisterStep(ExecutableStep step); }
Java
package de.mpg.mpiz.koeln.anna.server; import java.util.EventListener; import de.mpg.koeln.anna.core.events.AnnaEvent; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface AnnaEventListener extends EventListener { void eventOccoured(AnnaEvent event); }
Java
package de.mpg.mpiz.koeln.anna.server; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface AnnaServer extends ExecutorServer { final static String PROPERTIES_KEY_PREFIX = "anna.server."; final static String WORKING_DIR_KEY = PROPERTIES_KEY_PREFIX + "workingdir"; }
Java
package de.mpg.mpiz.koeln.anna.server; import java.util.Properties; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface Server { Properties getServerProperties(); void addEventListener(AnnaEventListener observer); void removeEventListener(AnnaEventListener observer); }
Java
package de.mpg.mpiz.koeln.anna.step; public interface AnnaStep extends ExecutableStep, ObservableStep { }
Java
package de.mpg.mpiz.koeln.anna.step; import java.util.Properties; import de.mpg.mpiz.koeln.anna.step.common.StepExecutionException; public interface ExecutableStep { boolean requirementsSatisfied() throws StepExecutionException; boolean canBeSkipped() throws StepExecutionException; boolean run() throws StepExe...
Java
package de.mpg.mpiz.koeln.anna.step; public interface ObservableStep { public enum State { LOOSE, REGISTERED, CHECK_NEED_TO_RUN, WAIT_FOR_REQ, RUNNING, DONE, ERROR, SKIPPED } State getState(); void setState(State state); }
Java
package de.mpg.koeln.anna.core.events; import java.util.Collection; import de.mpg.mpiz.koeln.anna.step.AnnaStep; import de.mpg.mpiz.koeln.anna.step.ObservableStep.State; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public class StepStateChangeEvent extends AnnaEvent { private static final lo...
Java
package de.mpg.koeln.anna.core.events; import java.util.Collection; import java.util.EventObject; import java.util.HashSet; import java.util.Set; import de.mpg.mpiz.koeln.anna.step.AnnaStep; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public class AnnaEvent extends EventObject { private sta...
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.mpiz.koeln.anna.step.AnnaStep; /** * * @author Alexander Kerner * @lastVisit 2009-09-22 * @thradSave custom * */ class ImmediateStepSheduler extends StepSheduler { ImmediateStepSheduler(An...
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import java.util.ArrayList; import java.util.Collection; import de.mpg.koeln.anna.core.events.AnnaEvent; import de.mpg.koeln.anna.core.events.StepStateChangeEvent; import de.mpg.mpiz.koeln.anna.server.AnnaEventListener; import de.mpg.mpiz.koeln.anna.step.AnnaStep; /** * <p...
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.mpiz.koeln.anna.step.AnnaStep; /** * * @author Alexander Kerner * @last...
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Collection; import java.util.HashSet; import java.util.Properties; import java.util.concurrent.ExecutorService; import java.util.concurrent....
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.koeln.anna.core.events.AnnaEvent; import de.mpg.koeln.anna.core.events.StepStateChangeEvent; import de.mpg.mpiz.koeln.anna.server.AnnaEventListener; import de.mpg.mpiz.koeln.anna.step.AnnaStep; impor...
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.koeln.anna.core.events.AnnaEvent; import de.mpg.koeln.anna.core.events.StepStateChangeEvent; import de.mpg.mpiz.koeln.anna.server.AnnaEventListener; import de.mpg.mpiz.koeln.anna.step.ObservableStep....
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import java.util.Hashtable; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcherImpl; import de.mpg.mpiz.koeln.anna.se...
Java
package de.mpg.mpiz.koeln.anna.serverimpl; import java.util.concurrent.Callable; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.mpiz.koeln.anna.server.Server; import de.mpg.mpiz.koeln.anna.step.AnnaStep; import de.mpg.mpiz.koeln.anna.step.ObservableStep; import de.mpg.mpiz.koeln.anna.ste...
Java
package de.mpg.mpiz.koeln.anna.server; import de.mpg.mpiz.koeln.anna.step.ExecutableStep; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface ExecutorServer extends Server { void registerStep(ExecutableStep step); void unregisterStep(ExecutableStep step); }
Java
package de.mpg.mpiz.koeln.anna.server; import java.util.EventListener; import de.mpg.koeln.anna.core.events.AnnaEvent; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface AnnaEventListener extends EventListener { void eventOccoured(AnnaEvent event); }
Java
package de.mpg.mpiz.koeln.anna.server; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface AnnaServer extends ExecutorServer { final static String PROPERTIES_KEY_PREFIX = "anna.server."; final static String WORKING_DIR_KEY = PROPERTIES_KEY_PREFIX + "workingdir"; }
Java
package de.mpg.mpiz.koeln.anna.server; import java.util.Properties; /** * * @lastVisit 2009-09-22 * @author Alexander Kerner * */ public interface Server { Properties getServerProperties(); // TODO: AnnaEventListener does not match this interface abstraction void addEventListener(AnnaEventListener observe...
Java
package de.mpg.mpiz.koeln.anna.step; public interface AnnaStep extends ExecutableStep, ObservableStep { }
Java
package de.mpg.mpiz.koeln.anna.step; import java.util.Properties; import de.mpg.mpiz.koeln.anna.step.common.StepExecutionException; public interface ExecutableStep { boolean requirementsSatisfied() throws StepExecutionException; boolean canBeSkipped() throws StepExecutionException; boolean run() throws StepExe...
Java
package de.mpg.mpiz.koeln.anna.step; import java.util.List; public interface ObservableStep { public enum State { // non-finished steps LOOSE, REGISTERED, CHECK_NEED_TO_RUN, WAIT_FOR_REQ, RUNNING, // finished steps DONE, ERROR, SKIPPED; public boolean isFinished(){ switch (this) { case DONE: ...
Java
package de.mpg.mpiz.koeln.anna.step.common; import de.mpg.mpiz.koeln.anna.step.ExecutableStep; public class StepExecutionException extends Exception { private static final long serialVersionUID = 5683856650378220175L; private final ExecutableStep step; public StepExecutionException(ExecutableStep step) { this....
Java
package de.mpg.mpiz.koeln.anna.step.common; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.mpg.mpiz.koeln.anna.step.ExecutableStep; /** * @lastVisit 2009-08-12 * @ThreadSave stateless * @author Alexander Kerner * @Exceptions good * */ public class StepUtils { private StepUtils() {} ...
Java
package de.mpg.mpiz.koeln.anna.server.data; public class DataBeanAccessException extends Exception { private static final long serialVersionUID = 4002480662305683330L; public DataBeanAccessException() { } public DataBeanAccessException(String arg0) { super(arg0); } public DataBeanAccessException(Throwable ...
Java
package de.mpg.mpiz.koeln.anna.server.data; import java.io.Serializable; import java.util.ArrayList; import java.util.Map; import de.bioutils.fasta.FASTAElement; import de.bioutils.gff.element.NewGFFElement; public interface GFF3DataBean extends DataBean{ public ArrayList<FASTAElement> getInputSequence(); publ...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import java.io.Serializable; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import de.bioutils.fasta.FASTAElement; import de.bioutils.gff.element.NewGFFElement; import de.mpg.mpiz.koeln.anna.server.data.GFF3DataBean; public class GFF3DataB...
Java
package de.mpg.mpiz.koeln.anna.server.data; import java.io.Serializable; import java.util.Map; public interface DataBean extends Serializable { public Map<String, Serializable> getCustom(); public void setCustom(Map<String, Serializable> custom); }
Java
package de.mpg.mpiz.koeln.anna.server.data; public interface DataModifier<V> { void modifiyData(V v); }
Java
package de.mpg.mpiz.koeln.anna.server.data; import de.mpg.mpiz.koeln.anna.data.DataBeanAccessException; // TODO: should be <V extends DataBean> public interface DataProxy<V> { /** * * <p> * Atomar operation on data. Data will be synchronized bevor and after this * operation. * </p> * * @param v * ...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import java.io.EOFException; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.OutputStream; i...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Properties; import de.kerner.commons.file.FileUtils; import de.kerner.commons.logging.Log; import de.mpg.mpiz.koeln.anna.data.DataBea...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import de.mpg.mpiz.koeln.anna.data.DataBean; import de.mpg.mpiz.koeln.anna.data.impl.GFF3DataBeanImpl; public class GFF3DiskSerialisation extends AbstractDiskSerialisation { protected volatile DataBean data = new GFF3DataBeanImpl(); @SuppressWarnings("unchecked") ...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; public class SimpleDiskSerialisation extends GFF3DiskSerialisation { @Override public String toString() { return this.getClass().getSimpleName(); } }
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import java.util.Hashtable; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import de.kerner.commons.logging.Log; import de.mpg.mpiz.koeln.anna.server.data.GFF3DataProxy; /** * * @author Alexander Kerner * @lastVisit 2009-11-12...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import java.io.File; import de.mpg.mpiz.koeln.anna.data.DataBean; import de.mpg.mpiz.koeln.anna.data.DataBeanAccessException; /** * * @author Alexander Kerner * @lastVisit 2009-09-21 * */ interface SerialisationStrategy { <V extends DataBean> V readDataBean(Fi...
Java
package de.mpg.mpiz.koeln.anna.server.data.impl; import java.io.File; import de.kerner.commons.file.FileUtils; import de.kerner.commons.logging.Log; import de.mpg.mpiz.koeln.anna.data.DataBean; import de.mpg.mpiz.koeln.anna.data.DataBeanAccessException; import de.mpg.mpiz.koeln.anna.data.impl.GFF3DataBeanImpl; /** ...
Java
package de.mpg.mpiz.koeln.anna.server.data; import de.mpg.mpiz.koeln.anna.data.GFF3DataBean; public interface GFF3DataProxy extends DataProxy<GFF3DataBean>{ }
Java
package de.mpg.mpiz.koeln.anna.listener.abstractlistener; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcher; import de.kerner.osgi.commons.logger.dispatcher.LogDispatcherImpl; import de.kerner.osgi.commons.utils.ServiceRet...
Java
package de.mpg.mpiz.koeln.anna.listener.abstractlistener; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import de.kerner.commons.osgi.utils.ServiceNotAvailabeException; import de.kerner.commons.osgi.utils.ServiceRetriever; import de.kerner.commons.osgi.utils.ServiceRetrieverImpl;...
Java
package de.mpg.mpiz.koeln.anna.data; /** * * @author Alexander Kerner * @lastVisit 2009-11-12 * */ public class DataBeanAccessException extends Exception { private static final long serialVersionUID = 4002480662305683330L; public DataBeanAccessException() { } public DataBeanAccessException(String arg0) { ...
Java
package de.mpg.mpiz.koeln.anna.data; import java.io.Serializable; /** * * @author Alexander Kerner * @lastVisit 2009-11-12 * */ public interface DataBean extends Serializable { public Serializable getCustom(String ident); public void addCustom(String ident, Serializable custom); }
Java
package de.mpg.mpiz.koeln.anna.step.exonerate.common; public class ExonerateConstants { private ExonerateConstants(){} public final static String WORKING_DIR_KEY = "anna.step.exonerate.workingDir"; public final static String EXE_DIR_KEY = "anna.step.exonerate.exeDir"; public final static String EXE = "exonerate...
Java
package de.mpg.mpiz.koeln.anna.step.exonerate.common; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.osgi.framework.BundleContext; import de.bioutils.fasta.FASTAElementGroup; import de.bioutils.fasta.NewFASTAFileImpl; import de.bioutils.gff.GFFFormatErr...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * Copyright 2012 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in w...
Java
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
Java
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
Java
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that...
Java
/* * MOAClassOptionEditor.java * Copyright (C) 2009 University of Waikato, Hamilton, New Zealand */ package weka.gui; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Container; import java.awt.Dialog; import java.awt.FontMetrics; import java.awt.Graphics; import java.awt.Rectangle; import ...
Java
/* * F1.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
Java
/* * ClusteringEvalPanel.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundat...
Java
/* * EWMAClassificationPerformanceEvaluator.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Albert Bifet (abifet at cs dot waikato dot ac dot nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public ...
Java
/* * BasicClusteringPerformanceEvaluator.java * Copyright (C) 2009 University of Waikato, Hamilton, New Zealand * @author Albert Bifet (abifet at cs dot waikato dot ac dot nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Lic...
Java
/* * OutlierPerformance.java * Copyright (C) 2013 Aristotle University of Thessaloniki, Greece * @author D. Georgiadis, A. Gounaris, A. Papadopoulos, K. Tsichlas, Y. Manolopoulos * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance wit...
Java
/* * General.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either ...
Java
/* * FadingFactorClassificationPerformanceEvaluator.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Albert Bifet (abifet at cs dot waikato dot ac dot nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General...
Java
/* * LearningEvaluation.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * th...
Java
/* * EntropyCollection.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License...
Java
/** * [CMM.java] * * CMM: Main class * * Reference: Kremer et al., "An Effective Evaluation Measure for Clustering on Evolving Data Streams", KDD, 2011 * * @author Timm jansen * Data Management and Data Exploration Group, RWTH Aachen University * * Licensed under the Apache License, Version 2.0 (the "Li...
Java
/* * Accuracy.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either...
Java
/* * RegressionPerformanceEvaluator.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published...
Java
/* * BasicClassificationPerformanceEvaluator.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz) * @author Albert Bifet (abifet at cs dot waikato dot ac dot nz) * * This program is free software; you can redistribute it and/or m...
Java
/* * RegressionAccuracy.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundati...
Java
/* * Cluster.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
Java
/* * MeasureCollection.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License...
Java
/* * WindowRegressionPerformanceEvaluator.java * Copyright (C) 2011 University of Waikato, Hamilton, New Zealand * @author Albert Bifet (abifet at cs dot waikato dot ac dot nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Li...
Java
/* * LearningCurve.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Fre...
Java
/* * SSQ.java * Copyright (C) 2010 RWTH Aachen University, Germany * @author Jansen (moa@cs.rwth-aachen.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
Java
/* * ClassificationPerformanceEvaluator.java * Copyright (C) 2007 University of Waikato, Hamilton, New Zealand * @author Richard Kirkby (rkirkby@cs.waikato.ac.nz) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as publi...
Java