The class-visibility tag has no wiki summary.
8
votes
5answers
296 views
What's the simplest way to satisfy a pure abstract method with methods from other base classes
Edit: Per some comments, by simple I mean a) less code, b) easy to maintain, and c) hard to get wrong.
Edit #2: Also, using containment instead of private inheritance is not objectionable if it does ...
3
votes
1answer
83 views
How to use reflection mechanisms to invoke a public method that resides in a base class with default visibility?
This question concerns the reflection mechanisms of the java programming language.
I have an interface:
package A;
public interface MyInterface {
public boolean doSomething(Object... ...
3
votes
2answers
86 views
Can class visibility be shown on UML class diagrams?
Class visibility is an important part of object design. I have not seen any example diagrams showing non-public classes in several UML books, nor have I seen a way to show class visibility in ...
1
vote
2answers
64 views
Why is public inheritance advocated when reducing the publicly visible API seems preferable from a maintainability perspective?
I am using bada and refer to the tutorial here, which begins:
class MainForm:
public Osp::Ui::Controls::Form,
public Osp::Ui::IActionEventListener,
public ...
1
vote
1answer
114 views
Call private or protected method from an include file
myclass.php
class myclass {
private $name;
public function showData(){
include_once "extension.php";
otherFunction($this);
}
private function display(){
echo "hello world!";
}
}
...
1
vote
2answers
286 views
How is Spring BeanFactory able to instantiate a non-public class?
Spring newbie here.
I observed that Spring was able to instantiate a non-public class (i.e. a class with default visibility) that I had defined. Can anyone tell me how Spring achieves this? Why is ...
0
votes
3answers
87 views
C++, how to cast derived class to protected base?
I need to cast a class to its protected base:
class ComplicatedOne : public Object {
//Lots of funcs I don't want or need.
};
class Line : protected ComplicatedOne {
//Some funcs of ...
0
votes
1answer
50 views
How to change a type's accessor with Mono.Cecil
Is this possible?
I want to make a public class internal.
Thanks
0
votes
0answers
111 views
Is there ANY way to have the content of my jquery fancybox be 'SEO' friendly?
By 'SEO" friendly, I simply mean show up! I've been working on this for weeks and can not seem to find a way to have the fancybox content seen by the search engines. I started with the simple coding ...
0
votes
0answers
141 views
Problems with switching buttons states while control them with Visibility property?
I have a strange behavior in my Silverlight app that I’d like to find out how to fix it.
I have a set of buttons that I change visibility based on the scenario needs. However, after changing the ...
0
votes
2answers
55 views
How can I protect a class property from extending classes in PHP?
Is it possible to do something like this:
class foo {
private $private = 'A';
}
class bar extends foo {
echo $this->private;
}
bar returns null...
I'd really like it if the variable ...