本文整理匯總了Java中org.apache.maven.project.MavenProject.getDescription方法的典型用法代碼示例。如果您正苦於以下問題:Java MavenProject.getDescription方法的具體用法?Java MavenProject.getDescription怎麽用?Java MavenProject.getDescription使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.maven.project.MavenProject
的用法示例。
在下文中一共展示了MavenProject.getDescription方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getShortDescription
import org.apache.maven.project.MavenProject; //導入方法依賴的package包/類
@Messages({
"TXT_FailedProjectLoadingDesc=This project could not be loaded by the NetBeans Connector. "
+ "That usually means something is wrong with your pom.xml, or plugins are missing. "
+ "Select \"Show and Resolve Problems\" from the project's context menu for additional information.",
"LBL_DefaultDescription=A Maven-based project",
"TXT_Loading=Loading...",
"DESC_Project1=Location:",
"DESC_Project2=GroupId:",
"DESC_Project3=ArtifactId:",
"DESC_Project4=Version:",
"DESC_Project5=Packaging:",
"DESC_Project6=Description:",
"DESC_Project7=Problems:"
})
@Override public String getShortDescription() {
StringBuilder buf = new StringBuilder();
String desc;
MavenProject mp = project.isMavenProjectLoaded() ? project.getOriginalMavenProject() : null;
if(mp != null) {
if (NbMavenProject.isErrorPlaceholder(mp)) {
desc = TXT_FailedProjectLoadingDesc();
} else {
//TODO escape the short description
desc = mp.getDescription();
if (desc == null) {
desc = LBL_DefaultDescription();
}
}
} else {
desc = TXT_Loading();
}
buf.append("<html><i>").append(DESC_Project1()).append("</i><b> ").append(FileUtil.getFileDisplayName(project.getProjectDirectory())).append("</b><br><i>"); //NOI18N
if (mp != null) {
buf.append(DESC_Project2()).append("</i><b> ").append(mp.getGroupId()).append("</b><br><i>");//NOI18N
buf.append(DESC_Project3()).append("</i><b> ").append(mp.getArtifactId()).append("</b><br><i>");//NOI18N
buf.append(DESC_Project4()).append("</i><b> ").append(mp.getVersion()).append("</b><br><i>");//NOI18N
buf.append(DESC_Project5()).append("</i><b> ").append(mp.getPackaging()).append("</b><br><i>");//NOI18N
}
buf.append(DESC_Project6()).append("</i> ").append(breakPerLine(desc, DESC_Project5().length()));//NOI18N
Collection<? extends ProjectProblem> problems = project.getLookup().lookup(ProjectProblemsProvider.class).getProblems();
if (!problems.isEmpty()) {
buf.append("<br><b>").append(DESC_Project7()).append("</b><br><ul>");//NOI18N
for (ProjectProblem elem : problems) {
buf.append("<li>").append(elem.getDisplayName()).append("</li>");//NOI18N
}
buf.append("</ul>");//NOI18N
}
// it seems that with ending </html> tag the icon descriptions are not added.
// buf.append("</html>");//NOI18N
return buf.toString();
}