本文整理汇总了Java中com.sun.org.apache.xml.internal.utils.StringVector类的典型用法代码示例。如果您正苦于以下问题:Java StringVector类的具体用法?Java StringVector怎么用?Java StringVector使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
StringVector类属于com.sun.org.apache.xml.internal.utils包,在下文中一共展示了StringVector类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SAX2RTFDTM
import com.sun.org.apache.xml.internal.utils.StringVector; //导入依赖的package包/类
public SAX2RTFDTM(DTMManager mgr, Source source, int dtmIdentity,
DTMWSFilter whiteSpaceFilter,
XMLStringFactory xstringfactory,
boolean doIndexing)
{
super(mgr, source, dtmIdentity, whiteSpaceFilter,
xstringfactory, doIndexing);
// NEVER track source locators for RTFs; they aren't meaningful. I think.
// (If we did track them, we'd need to tail-prune these too.)
//com.sun.org.apache.xalan.internal.processor.TransformerFactoryImpl.m_source_location;
m_useSourceLocationProperty=false;
m_sourceSystemId = (m_useSourceLocationProperty) ? new StringVector()
: null;
m_sourceLine = (m_useSourceLocationProperty) ? new IntVector() : null;
m_sourceColumn = (m_useSourceLocationProperty) ? new IntVector() : null;
// Record initial sizes of fields that are pushed and restored
// for RTF tail-pruning. More entries can be popped than pushed, so
// we need this to mark the primordial state of the DTM.
m_emptyNodeCount = m_size;
m_emptyNSDeclSetCount = (m_namespaceDeclSets == null)
? 0 : m_namespaceDeclSets.size();
m_emptyNSDeclSetElemsCount = (m_namespaceDeclSetElements == null)
? 0 : m_namespaceDeclSetElements.size();
m_emptyDataCount = m_data.size();
m_emptyCharsCount = m_chars.size();
m_emptyDataQNCount = m_dataOrQName.size();
}
示例2: SetInsert
import com.sun.org.apache.xml.internal.utils.StringVector; //导入依赖的package包/类
public void SetInsert(String tableName, StringVector arrColumns, Vector arrVal)
{
m_csTable = tableName;
ASSERT(arrColumns) ;
m_arrCollumns = arrColumns ;
ASSERT(arrVal) ;
m_arrValues = arrVal ;
}
示例3: populateSpecimens
import com.sun.org.apache.xml.internal.utils.StringVector; //导入依赖的package包/类
private void populateSpecimens(PathologySpecimenVoCollection voPathologySpecimenColl)
{
if(voPathologySpecimenColl == null)
return;
StringVector specimenAlreadyAdded = new StringVector();
for(int i = 0; i< voPathologySpecimenColl.size(); i++)
{
addOrderSpecimen(voPathologySpecimenColl.get(i), specimenAlreadyAdded, false);//WDEV-16504
}
}
示例4: SetReferences
import com.sun.org.apache.xml.internal.utils.StringVector; //导入依赖的package包/类
public void SetReferences(StringVector v)
{
m_arrFormReferences = v ;
}