ItEr21S06XestionDaComunidadeItEr20S06: Removed legacy 'created at' comments
This commit is contained in:
parent
d1a192d33c
commit
373e18743b
14 changed files with 0 additions and 14 deletions
|
|
@ -8,7 +8,6 @@ import java.util.List;
|
|||
|
||||
/**
|
||||
* Compounds some {@link ICriterion} into one <br />
|
||||
* Created at May 12, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
public class CriterionCompounder {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,6 @@ import org.springframework.transaction.annotation.Transactional;
|
|||
|
||||
/**
|
||||
* Test cases for CriterionDAO <br />
|
||||
* Created at May 13, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ import org.navalplanner.business.resources.entities.Worker;
|
|||
|
||||
/**
|
||||
* Tests for criterion. <br />
|
||||
* Created at May 12, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ package org.zkoss.ganttz;
|
|||
|
||||
/**
|
||||
* An object that listens to the removing of a dependency. <br />
|
||||
* Created at Apr 29, 2009
|
||||
*
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ import org.zkoss.zul.Div;
|
|||
|
||||
/**
|
||||
* This class wraps ResourceLoad data inside an specific HTML Div component.
|
||||
* Created at Aug 11, 2009
|
||||
* @author Lorenzo Tilve Álvaro <ltilve@igalia.com>
|
||||
*/
|
||||
public class ResourceLoadComponent extends Div implements AfterCompose {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import org.zkoss.zul.impl.XulElement;
|
|||
|
||||
/**
|
||||
* Component to include a list of ResourceLoads inside the ResourcesLoadPanel.
|
||||
* Created at Aug 11, 2009
|
||||
* @author Lorenzo Tilve Álvaro <ltilve@igalia.com>
|
||||
*/
|
||||
public class ResourceLoadList extends XulElement implements AfterCompose {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,6 @@ import org.zkoss.zk.ui.ext.AfterCompose;
|
|||
/**
|
||||
* This class contains the information of a task container. It can be modified
|
||||
* and notifies of the changes to the interested parties. <br/>
|
||||
* Created at Jul 1, 2009
|
||||
* @author Lorenzo Tilve Álvaro <ltilve@igalia.com>
|
||||
*/
|
||||
public class TaskContainerComponent extends TaskComponent implements
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ import org.apache.commons.lang.builder.HashCodeBuilder;
|
|||
/**
|
||||
* This class represents a dependency. Contains the source and the destination.
|
||||
* It also specifies the type of the relationship. <br/>
|
||||
* Created at Apr 24, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
public class Dependency {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ import java.util.Date;
|
|||
/**
|
||||
* This enum tells the type of a depepdency. Each instance contanins the correct
|
||||
* behaviour for that type of dependency . <br/>
|
||||
* Created at Apr 24, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
public enum DependencyType {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,6 @@ import org.zkoss.ganttz.DependencyComponent;
|
|||
* This class contains a graph with the {@link Task tasks} as vertexes and the
|
||||
* {@link Dependency dependency} as arcs. It enforces the rules embodied in the
|
||||
* dependencies and in the duration of the tasks using listeners. <br/>
|
||||
* Created at Apr 24, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
public class GanttDiagramGraph {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ package org.zkoss.ganttz.data;
|
|||
* This class contains the information of a ResourceLoad unit. It will fetch
|
||||
* information from the DailyAssignments and build all its associated
|
||||
* ResourceLoad intervals <br/>
|
||||
* Created at Ago 11, 2009
|
||||
* @author Lorenzo Tilve Álvaro <ltilve@igalia.com>
|
||||
*/
|
||||
public class ResourceLoad {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ package org.zkoss.ganttz.data;
|
|||
|
||||
/**
|
||||
* This enum handles the different load Levels assinged to ResourceLoad intervals . <br/>
|
||||
* Created at Aug 12, 2009
|
||||
* @author Lorenzo Tilve Álvaro <ogonzalez@igalia.com>
|
||||
*/
|
||||
public enum ResourceLoadLevel {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ import java.util.List;
|
|||
/**
|
||||
* This class contains the information of a task. It can be modified and
|
||||
* notifies of the changes to the interested parties. <br/>
|
||||
* Created at Apr 24, 2009
|
||||
* @author Óscar González Fernández <ogonzalez@igalia.com>
|
||||
*/
|
||||
public abstract class Task implements ITaskFundamentalProperties {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ import org.zkoss.ganttz.util.WeakReferencedListeners.IListenerNotification;
|
|||
/**
|
||||
* This class contains the information of a task container. It can be modified
|
||||
* and notifies of the changes to the interested parties. <br/>
|
||||
* Created at Jul 1, 2009
|
||||
* @author Lorenzo Tilve Álvaro <ltilve@igalia.com>
|
||||
*/
|
||||
public class TaskContainer extends Task {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue