Skip to content

Commit

Permalink
Find/Replace overlay: move components into internal package
Browse files Browse the repository at this point in the history
moves helper classes for the find/replace overlay into an internal
package.
  • Loading branch information
Maximilian Wittmer authored and Maximilian Wittmer committed Jul 1, 2024
1 parent 769d5d1 commit 11f8e14
Show file tree
Hide file tree
Showing 7 changed files with 907 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Contributors:
* Vector Informatik GmbH - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.texteditor;
package org.eclipse.ui.internal.findandreplace.overlay;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -33,7 +33,7 @@
* activation behavior, we listen for it manually and send according events if
* necessary.
*/
class AccessibleToolBar extends Composite {
public class AccessibleToolBar extends Composite {

private List<ToolBar> toolBars = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Contributors:
* Vector Informatik GmbH - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.texteditor;
package org.eclipse.ui.internal.findandreplace.overlay;

import java.util.Objects;

Expand All @@ -23,7 +23,7 @@
/**
* Builder for ToolItems for {@link AccessibleToolBar}.
*/
class AccessibleToolItemBuilder {
public class AccessibleToolItemBuilder {
private final AccessibleToolBar accessibleToolBar;
private int styleBits = SWT.NONE;
private Image image;
Expand Down
Loading

0 comments on commit 11f8e14

Please sign in to comment.