Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion org.eclipse.wb.core.databinding/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.wb.core.databinding;singleton:=true
Bundle-Version: 1.9.900.qualifier
Bundle-Version: 1.9.1000.qualifier
Bundle-Activator: org.eclipse.wb.internal.core.databinding.Activator
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui;bundle-version="[3.206.0,4.0.0)",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2023 Google, Inc.
* Copyright (c) 2011, 2025 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand Down Expand Up @@ -260,20 +260,24 @@ public IPath[] enclosingProjectsAndJars() {
}

@Override
@Deprecated
public boolean includesBinaries() {
return true;
}

@Override
@Deprecated
public boolean includesClasspaths() {
return true;
}

@Override
@Deprecated
public void setIncludesBinaries(boolean includesBinaries) {
}

@Override
@Deprecated
public void setIncludesClasspaths(boolean includesClasspaths) {
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011 Google, Inc.
* Copyright (c) 2011, 2025 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand Down Expand Up @@ -60,6 +60,7 @@ public void setCheckedElements(Object[] elements) {
}

@Override
@Deprecated
public void setAllChecked(boolean state) {
m_viewer.setAllChecked(state);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ public boolean isEnabled() {
//
////////////////////////////////////////////////////////////////////////////
@Override
@Deprecated
public boolean activate(boolean reload) {
return entryInfo.createTool(reload) != null;
}
Expand Down Expand Up @@ -422,11 +423,13 @@ public List<PaletteEntry> getChildren() {
}

@Override
@Deprecated
public boolean isOpen() {
return m_open;
}

@Override
@Deprecated
public void setOpen(boolean open) {
m_open = open;
m_openCategories.put(categoryId, open);
Expand All @@ -452,6 +455,7 @@ private void showPalette() {
// set IPalette
m_paletteRoot = new DesignerRoot() {
@Override
@Deprecated
public void addPopupActions(IMenuManager menuManager, Object target, int iconsType) {
new DesignerPalettePopupActions(getOperations()).addPopupActions(
menuManager,
Expand All @@ -460,18 +464,21 @@ public void addPopupActions(IMenuManager menuManager, Object target, int iconsTy
}

@Override
@Deprecated
public void selectDefault() {
m_editPartViewer.getEditDomain().loadDefaultTool();
}

@Override
@Deprecated
public void moveCategory(ICategory _category, ICategory _nextCategory) {
CategoryInfo category = m_visualToCategoryInfo.get(_category);
CategoryInfo nextCategory = m_visualToCategoryInfo.get(_nextCategory);
commands_addWrite(new CategoryMoveCommand(category, nextCategory));
}

@Override
@Deprecated
public void moveEntry(IEntry _entry, ICategory _targetCategory, IEntry _nextEntry) {
EntryInfo entry = m_visualToEntryInfo.get(_entry);
CategoryInfo category = m_visualToCategoryInfo.get(_targetCategory);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ public int getModifiers() {
}

@Override
@Deprecated
public int getDeclaredModifiers() {
return m_declaredModifiers;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011 Google, Inc.
* Copyright (c) 2011, 2025 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand Down Expand Up @@ -93,21 +93,25 @@ public IPath[] enclosingProjectsAndJars() {
//
////////////////////////////////////////////////////////////////////////////
@Override
@Deprecated
public boolean includesBinaries() {
return m_hierarchyScope.includesBinaries();
}

@Override
@Deprecated
public boolean includesClasspaths() {
return m_hierarchyScope.includesClasspaths();
}

@Override
@Deprecated
public void setIncludesBinaries(boolean includesBinaries) {
m_hierarchyScope.setIncludesBinaries(includesBinaries);
}

@Override
@Deprecated
public void setIncludesClasspaths(boolean includesClasspaths) {
m_hierarchyScope.setIncludesClasspaths(includesClasspaths);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2024 Google, Inc. and others.
* Copyright (c) 2011, 2025 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand Down Expand Up @@ -156,6 +156,7 @@ private static final class PaletteImpl extends DesignerRoot {

/** {@inheritDoc} */
@Override
@Deprecated
public void addPopupActions(IMenuManager menuManager, Object target, int iconType) {
}

Expand All @@ -165,14 +166,17 @@ public void addPopupActions(IMenuManager menuManager, Object target, int iconTyp
//
////////////////////////////////////////////////////////////////////////////
@Override
@Deprecated
public void selectDefault() {
}

@Override
@Deprecated
public void moveCategory(ICategory category, ICategory nextCategory) {
}

@Override
@Deprecated
public void moveEntry(IEntry entry, ICategory targetCategory, IEntry nextEntry) {
}
}
Expand Down Expand Up @@ -201,11 +205,13 @@ public CategoryImpl(String text, boolean open) {
////////////////////////////////////////////////////////////////////////////

@Override
@Deprecated
public boolean isOpen() {
return m_open;
}

@Override
@Deprecated
public void setOpen(boolean b) {
m_open = b;
}
Expand Down Expand Up @@ -244,6 +250,7 @@ public boolean isEnabled() {
//
////////////////////////////////////////////////////////////////////////////
@Override
@Deprecated
public boolean activate(boolean reload) {
return true;
}
Expand Down
Loading