mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-07 09:11:15 -09:00
GP-6997 add source languages column to project file table
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
/* ###
|
||||
* IP: GHIDRA
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package ghidra.util.table.projectdata.column;
|
||||
|
||||
import ghidra.docking.settings.Settings;
|
||||
import ghidra.framework.main.datatable.DomainFileInfo;
|
||||
import ghidra.framework.main.datatable.ProjectDataColumn;
|
||||
import ghidra.framework.model.ProjectData;
|
||||
import ghidra.framework.plugintool.ServiceProvider;
|
||||
|
||||
public class SourceLanguageProjectDataColumn extends ProjectDataColumn<String> {
|
||||
|
||||
@Override
|
||||
public String getColumnName() {
|
||||
return "Source Languages";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getValue(DomainFileInfo info, Settings settings, ProjectData data,
|
||||
ServiceProvider services) throws IllegalArgumentException {
|
||||
|
||||
return info.getMetaDataValue("Source Languages");
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getColumnPreferredWidth() {
|
||||
return 100;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isDefaultColumn() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getPriority() {
|
||||
return 12;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user