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

cn.dreampie.common.plugin.sqlinxml.SqlRoot Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package cn.dreampie.common.plugin.sqlinxml;

import com.google.common.collect.Lists;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;

/**
 * Created by wangrenhui on 14-1-5.
 */
@XmlRootElement
public class SqlRoot {

  @XmlElement(name = "sqlGroup")
  List sqlGroups = Lists.newArrayList();

  void addSqlRoot(SqlGroup sqlGroup) {
    sqlGroups.add(sqlGroup);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy