GP-6997 add source languages column to project file table

This commit is contained in:
dev747368
2026-06-23 20:25:03 +00:00
parent ba0bfb2e5a
commit 19cd34db3e

View File

@@ -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;
}
}