
com.njzxw.compress_maven_plugin.merge.GroupBean Maven / Gradle / Ivy
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.njzxw.compress_maven_plugin.merge;
import java.util.List;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
/**
*
* @author eliay
*/
@XmlRootElement(name="group")
public class GroupBean {
@XmlAttribute
private String name;
private List js;
private List css;
/**
* @return the name
*/
@XmlTransient
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the js
*/
public List getJs() {
return js;
}
/**
* @param js the js to set
*/
public void setJs(List js) {
this.js = js;
}
/**
* @return the css
*/
public List getCss() {
return css;
}
/**
* @param css the css to set
*/
public void setCss(List css) {
this.css = css;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy