Toggle navigation
Home
com.google.common.base.Optional<org.eclipse.che.ide.api.resources.Project> to org.eclipse.che.ide.api.resources.Project
No. of Instances - 11
No. of Commits - 6
No. of Projects - {'che'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Add or Remove Method invocation
project.get().getLocation().toString()
to
project.getLocation().toString()
project.get()
to
project
project.get().isTypeOf(MAVEN_ID)
to
project.isTypeOf(MAVEN_ID)
project.get().getLocation().toString()
to
project.getLocation().toString()
project.get().isTypeOf(MAVEN_ID)
to
project.isTypeOf(MavenAttributes.MAVEN_ID)
project.get().getLocation()
to
project.getLocation()
JavaUtil.isJavaProject(project.get())
to
JavaUtil.isJavaProject(project)
JAVAC.equals(project.get().getType())
to
JAVAC.equals(project.getType())
isJavaProject(project.get())
to
isJavaProject(project)
project.get().getLocation().toString()
to
arg
classpathContainer.getClasspathEntries(arg).then(new HashSet<>(){ @Override public void apply( List<ClasspathEntryDto> arg) throws OperationException { classpathResolver.resolveClasspathEntries(arg); if (propertiesMap == null) { propertiesMap=new HashMap<>(); for ( ClasspathPagePresenter page : classpathPages) { Set<ClasspathPagePresenter> pages=propertiesMap.get(page.getCategory()); if (pages == null) { pages=new HashSet<>(); propertiesMap.put(page.getCategory(),pages); } pages.add(page); } view.setPages(propertiesMap); } view.showDialog(); view.selectPage(propertiesMap.entrySet().iterator().next().getValue().iterator().next()); } } )
to
classpathContainer.getClasspathEntries(project.getLocation().toString()).then(arg -> { classpathResolver.resolveClasspathEntries(arg); if (propertiesMap == null) { propertiesMap=new HashMap<>(); for ( ClasspathPagePresenter page : classpathPages) { Set<ClasspathPagePresenter> pages=propertiesMap.computeIfAbsent(page.getCategory(),k -> new HashSet<>()); pages.add(page); } view.setPages(propertiesMap); } view.showDialog(); view.selectPage(propertiesMap.entrySet().iterator().next().getValue().iterator().next()); } )
project.get().getLocation()
to
project.getLocation()
JavaUtil.isJavaProject(project.get())
to
JavaUtil.isJavaProject(project)
JAVAC.equals(project.get().getType())
to
JAVAC.equals(project.getType())
project.isPresent()
to
isJavaProject(project)
Cascading Type Change (Different)
Operation<List<ClasspathEntryDto>>
to
HashSet<>