All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.izforge.izpack.compiler.helper.TargetFileSet Maven / Gradle / Ivy

There is a newer version: 5.2.3
Show newest version
/*
 * IzPack - Copyright 2001-2012 Julien Ponge, All Rights Reserved.
 *
 * http://izpack.org/
 * http://izpack.codehaus.org/
 *
 * 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 writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.izforge.izpack.compiler.helper;

import java.util.List;
import java.util.Map;

import com.izforge.izpack.api.data.Blockable;
import com.izforge.izpack.api.data.OverrideType;
import com.izforge.izpack.api.data.binding.OsModel;
import com.izforge.izpack.util.file.types.FileSet;


public class TargetFileSet extends FileSet
{
    private String targetDir;
    private List osList;
    private OverrideType override;
    private String overrideRenameTo;
    private Blockable blockable;
    private Map additionals;
    private String condition;
    private Map pack200Properties;

    public String getTargetDir()
    {
        return targetDir;
    }

    public void setTargetDir(String targetDir)
    {
        this.targetDir = targetDir;
    }

    public List getOsList()
    {
        return osList;
    }

    public void setOsList(List osList)
    {
        this.osList = osList;
    }

    public OverrideType getOverride()
    {
        return override;
    }

    public void setOverride(OverrideType override)
    {
        this.override = override;
    }

    public String getOverrideRenameTo()
    {
        return overrideRenameTo;
    }

    public void setOverrideRenameTo(String overrideRenameTo)
    {
        this.overrideRenameTo = overrideRenameTo;
    }

    public Blockable getBlockable()
    {
        return blockable;
    }

    public void setBlockable(Blockable blockable)
    {
        this.blockable = blockable;
    }

    public Map getAdditionals()
    {
        return additionals;
    }

    public void setAdditionals(Map additionals)
    {
        this.additionals = additionals;
    }

    public String getCondition()
    {
        return condition;
    }

    public void setCondition(String condition)
    {
        this.condition = condition;
    }

    public void setPack200Properties(Map pack200Properties)
    {
        this.pack200Properties = pack200Properties;
    }

    public Map getPack200Properties()
    {
        return pack200Properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy