ItEr33S08ValidacionEProbasFuncionaisItEr32S09: [Bug #79] PlannerConfiguration exposes interface for showing disability

This commit is contained in:
Óscar González Fernández 2009-11-02 19:58:19 +01:00
parent 0167b153f0
commit 1edd192e76
2 changed files with 32 additions and 1 deletions

View file

@ -0,0 +1,30 @@
/*
* This file is part of ###PROJECT_NAME###
*
* Copyright (C) 2009 Fundación para o Fomento da Calidade Industrial e
* Desenvolvemento Tecnolóxico de Galicia
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero 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 it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.zkoss.ganttz.adapters;
/**
* @author Óscar González Fernández <ogonzalez@igalia.com>
*
*/
public interface IDisabilityConfiguration {
public boolean isAddingDependenciesEnabled();
}

View file

@ -35,7 +35,7 @@ import org.zkoss.zk.ui.Component;
* A object that defines several extension points for gantt planner
* @author Óscar González Fernández <ogonzalez@igalia.com>
*/
public class PlannerConfiguration<T> {
public class PlannerConfiguration<T> implements IDisabilityConfiguration {
private static class NullCommand<T> implements ICommand<T> {
@ -161,6 +161,7 @@ public class PlannerConfiguration<T> {
this.addingDependenciesEnabled = addingDependenciesEnabled;
}
@Override
public boolean isAddingDependenciesEnabled() {
return addingDependenciesEnabled;
}