Skip to main content

All Questions

Tagged with
0 votes
1 answer
283 views

Class-visibility in eclipse plugin-project

I am working on an eclipse plugin with the following structure: my.plugin.one my.plugin.one.ui my.plugin.two my.plugin.three my.plugin.three.ui Inside my.plugin.one.ui I have a class MyFirstClass ...
John's user avatar
  • 805
1 vote
1 answer
254 views

Dynamic content of IWizardPage not properly shown

I am working on an Eclipse product which will open a wizard which content depends on previous user selection. I created a few WizardPages which read global parameters and then show the appropriate ...
Nazrim's user avatar
  • 35
0 votes
2 answers
741 views

Eclipse - I want to access a class from the same package but under a different project, how?

I use Eclipse IDE for my Java projects and all my projects(Project_1,Project_2 and so on) related classes are inside a package package_name. I am currently working on 2 classes. class_name.java(...
Keir Simmons's user avatar
  • 1,674
0 votes
1 answer
158 views

Eclipse Java: using existing source-code as different packages (due to visibility)

I have 3 different Java-projects: Project A: some basic functionality (Package: "com.a.b.c") Project B: should be a library and uses A (Package: "com.b.c.d") Project C: should be a library and uses A ...
user2742923's user avatar
0 votes
3 answers
4k views

Eclipse - same package-name different projects. Which one will be activated by Eclipse?

I have two different Eclipse IDE Projects, which contain a equally named packages with. Project one: com.example.test |_ lib.java Project two: com.example.test |_ lib.java Now, when I do ...
Skip's user avatar
  • 6,401
0 votes
4 answers
5k views

How to make Views with an Invisible attribute 'Visible' after clicking a button

I have several Views, text views, and a button that have the android:visibility="invisible" attribute. My goal is to click a button that resides above these 'invisible' widgets, so that these widgets ...
Bobby's user avatar
  • 3
4 votes
4 answers
4k views

Method does not override package visible method in Eclipse

From the Eclipse Java compiler setting: Method does not override package visible method "A package default method is not visible in a different package, and thus cannot be overridden. When this ...
Eric the Red's user avatar
  • 5,434
0 votes
1 answer
197 views

Why my code does not see new images?

In my code I refer to an image: ImageIcon icon = createImageIcon("images/1b.png"); It works. Then I add a new image to the directory (images/1a.png) and Java does not see this image! Moreover, I ...
Roman's user avatar
  • 129k