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

com.jfplugin.xsql.statement.CdataSectionStatement Maven / Gradle / Ivy

The newest version!
package com.jfplugin.xsql.statement;

import org.w3c.dom.Node;

import com.jfplugin.xsql.core.Context;

/**
 * CDATA节点
 * @author farmer
 *
 */
public class CdataSectionStatement extends TextStatement{

	public CdataSectionStatement(Node node) {
		super(node);
	}

	@Override
	public void execute(Context ctx, Object localVar) {
		super.execute(ctx, localVar);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy