How To Install libeclipse-ltk-ui-refactoring-java on Kali Linux
Introduction
In this tutorial we learn how to install libeclipse-ltk-ui-refactoring-java
on Kali Linux.
What is libeclipse-ltk-ui-refactoring-java
libeclipse-ltk-ui-refactoring-java is:
Eclipse JDT UI implements the user interface for the Java IDE. It provides several workbench contributions for viewing and manipulating Java code:
- Package Explorer View - shows the Java element tree as defined by a project’s build class path
- Type Hierarchy View - shows the sub- and supertype hierarchies
- Java Outline View - shows the structure of a Java compilation unit or class file
- Java Browsing Perspecitve - allows navigating the Java model using separate views for projects, packages, types and members.
- Wizards for creating Java elements - Java project, package, class, interface
- Java Editor - syntax coloring, content specific code assist, code resolve, method level edit, import assistance, quick fix and quick assist
In addition to these workbench elements the following functions are provided:
- Refactoring support - Extract Method, Safe Rename and Moving with reference updates, Self Encapsulate Field etc.
- Java searching - find declarations of and/or references to packages, types, methods, and fields, scoped to the workspace, a working set, or the current selection.
- Java aware structured compare - determine and present changes to individual Java methods. It supports to replace individual Java elements with a version of an element from the local history.
This package contains the org.eclipse.ltk.ui.refactoring bundle.
There are three methods to install libeclipse-ltk-ui-refactoring-java
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libeclipse-ltk-ui-refactoring-java Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libeclipse-ltk-ui-refactoring-java
using apt-get
by running the following command:
sudo apt-get -y install libeclipse-ltk-ui-refactoring-java
Install libeclipse-ltk-ui-refactoring-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libeclipse-ltk-ui-refactoring-java
using apt
by running the following command:
sudo apt -y install libeclipse-ltk-ui-refactoring-java
Install libeclipse-ltk-ui-refactoring-java Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libeclipse-ltk-ui-refactoring-java
using aptitude
by running the following command:
sudo aptitude -y install libeclipse-ltk-ui-refactoring-java
How To Uninstall libeclipse-ltk-ui-refactoring-java on Kali Linux
To uninstall only the libeclipse-ltk-ui-refactoring-java
package we can use the following command:
sudo apt-get remove libeclipse-ltk-ui-refactoring-java
Uninstall libeclipse-ltk-ui-refactoring-java And Its Dependencies
To uninstall libeclipse-ltk-ui-refactoring-java
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libeclipse-ltk-ui-refactoring-java
Remove libeclipse-ltk-ui-refactoring-java Configurations and Data
To remove libeclipse-ltk-ui-refactoring-java
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libeclipse-ltk-ui-refactoring-java
Remove libeclipse-ltk-ui-refactoring-java configuration, data, and all of its dependencies
We can use the following command to remove libeclipse-ltk-ui-refactoring-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libeclipse-ltk-ui-refactoring-java
Dependencies
libeclipse-ltk-ui-refactoring-java have the following dependencies:
- libeclipse-ltk-core-refactoring-java
- libeclipse-compare-java
- libeclipse-core-commands-java
- libeclipse-core-expressions-java
- libeclipse-core-filebuffers-java
- libeclipse-core-filesystem-java
- libeclipse-core-jobs-java
- libeclipse-core-resources-java
- libeclipse-core-runtime-java
- libeclipse-jface-java
- libeclipse-jface-text-java
- libeclipse-team-core-java
- libeclipse-team-ui-java
- libeclipse-text-java
- libeclipse-ui-navigator-java
- libeclipse-ui-workbench-java
- libequinox-common-java
- libequinox-preferences-java
- libequinox-registry-java
- libicu4j-java
- libswt-gtk-4-java
References
Summary
In this tutorial we learn how to install libeclipse-ltk-ui-refactoring-java
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.