// ============================================================================ // // Copyright (C) 2006-2012 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have received a copy of the agreement // along with this program; if not, write to Talend SA // 9 rue Pages 92150 Suresnes, France // // ============================================================================ package org.talend.designer.core.ui.routine; /** * ggu class global comment. Detailled comment */ public class RoutineItemRecord { private String id; private String label; private String version; private String name; private boolean hasProblem; public RoutineItemRecord() { } public String getId() { return this.id; } public void setId(String id) { this.id = id; } public String getLabel() { return this.label; } public void setLabel(String label) { this.label = label; } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public boolean hasProblem() { return this.hasProblem; } public void setHasProblem(boolean hasProblem) { this.hasProblem = hasProblem; } }