本文整理汇总了Java中com.github.javaparser.ast.CompilationUnit.toString方法的典型用法代码示例。如果您正苦于以下问题:Java CompilationUnit.toString方法的具体用法?Java CompilationUnit.toString怎么用?Java CompilationUnit.toString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.github.javaparser.ast.CompilationUnit
的用法示例。
在下文中一共展示了CompilationUnit.toString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: mergeContent
import com.github.javaparser.ast.CompilationUnit; //导入方法依赖的package包/类
public static String mergeContent(CompilationUnit one, CompilationUnit two) throws Exception {
// 包声明不同,返回null
if (!one.getPackage().equals(two.getPackage())) return null;
CompilationUnit cu = new CompilationUnit();
// add package declaration to the compilation unit
PackageDeclaration pd = new PackageDeclaration();
pd.setName(one.getPackage().getName());
cu.setPackage(pd);
// check and merge file comment;
Comment fileComment = mergeSelective(one.getComment(), two.getComment());
cu.setComment(fileComment);
// check and merge imports
List<ImportDeclaration> ids = mergeListNoDuplicate(one.getImports(), two.getImports());
cu.setImports(ids);
// check and merge Types
List<TypeDeclaration> types = mergeTypes(one.getTypes(), two.getTypes());
cu.setTypes(types);
return cu.toString();
}
示例2: merge
import com.github.javaparser.ast.CompilationUnit; //导入方法依赖的package包/类
/**
* Util method to make source merge more convenient
*
* @param first merge params, specifically for the existing source
* @param second merge params, specifically for the new source
* @return merged result
* @throws ParseException cannot parse the input params
*/
public static String merge(String first, String second) throws ParseException {
JavaParser.setDoNotAssignCommentsPreceedingEmptyLines(false);
CompilationUnit cu1 = JavaParser.parse(new StringReader(first), true);
CompilationUnit cu2 = JavaParser.parse(new StringReader(second), true);
AbstractMerger<CompilationUnit> merger = AbstractMerger.getMerger(CompilationUnit.class);
CompilationUnit result = merger.merge(cu1, cu2);
return result.toString();
}