Sql.java :  » IntelliJ » ibatis-plugin » org » intellij » ibatis » dom » sqlMap » Java Open Source

Java Open Source » IntelliJ » ibatis plugin 
ibatis plugin » org » intellij » ibatis » dom » sqlMap » Sql.java
package org.intellij.ibatis.dom.sqlMap;

import com.intellij.javaee.model.xml.CommonDomModelElement;
import com.intellij.util.xml.GenericAttributeValue;
import org.jetbrains.annotations.NotNull;

/**
 * SQL select element
 */
public interface Sql extends CommonDomModelElement {
    @NotNull
    public GenericAttributeValue<String> getId();

    /**
     * get the SQL code
     *
     * @return SQL sentence
     */
    @NotNull public String getSQL();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.