A public method is a method declaration that allows access from other classes external to the current class.
0
votes
1answer
29 views
Private and public methods and variable in JavaScript
I am having some problems to understand how to implement and use classes with private/ public methods and use it, even after some read around.
I have the following code:
var _Exits = 0;
var ...
1
vote
3answers
64 views
Make form function accesible to all forms
I have this function on Form1, and I want to use the same function for Form2, Form3 and so on, instead of duplicate the function on each Form is there any way to make it accesible for all? I've tried ...
0
votes
1answer
41 views
Make jQuery plugin method publicly available once the plugin has been applied to an element
I'm modifying an existing jQuery plugin that currently has a private function (assigned to a var within the plugin scope) that I would like to expose so I can call it from outside the plugin at an ...
-2
votes
1answer
57 views
weight loss program using javascript
I am making a weight loss programming using javascript. The user is to input their weight and it wil decrease by -5. I was following a tutorial on how to do this but the tutorial did not have away for ...
0
votes
3answers
42 views
Fatal allowed memory size exceeded when using class extend
When I use a lot of class extends, I get this error:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 65488 bytes) in C:\Web\private\bootstrap.php on line 5 (I made ...
0
votes
4answers
499 views
objective c accessing public method
I try to access a public method from another class. I already tried many examples I found in the web, but they didn't work in the way I wanted them to.
Class1.h
@interface anything : NSObject {
...
0
votes
1answer
109 views
Change variable on main class from external class
I want to have to change the var filmAan to false in my Main.as, by the function terug in the external class video01.
This is my Main.as
package
{
import flash.display.MovieClip;
import ...
2
votes
2answers
134 views
videojs public method access outside ready function and IE
I built a player on top of videoJS and I'm having trouble accessing public functions inside videoJS .ready(). The thing is that my code appears to be working everywhere except IE (works in chrome, ...
0
votes
1answer
49 views
Protocol vs Direct Message in Cocoa Touch
In my app, there are some places where I have to invoke a set of code in other class. I usually use protocol to do so
// Teacher.m
@protocol TeacherProtocol
- (void)assignHomeWork;
- ...
0
votes
1answer
552 views
Reference to a non-shared member requires an object reference occurs when calling public sub
I have a Public Class "General" in which is a Public Sub "updateDynamics". When I attempt to reference it in the code-behind for a page like so:
updateDynamics(get_prospect.dynamicsID)
I get the ...
0
votes
1answer
43 views
AS3:public variable vs .this
If there is a main class which uses class Chan, given two codes, for example
public class Chan extends Sprite
{
public function Chan():void
{
this.graphics.beginFill(0x123456);
...
0
votes
1answer
115 views
How to modify a Form and refresh it from another Form
I use two Forms:
Form1 contains button1
Form2 contains button2 and Panel1
My project starts using Form2. Then I click on button2 to show Form1
private void button2_Click(object sender, ...
3
votes
2answers
451 views
Calling a public method in Windows Forms
I have 1 MDI Form which contains 1 panel control, and 1 Form with 1 button which serves to make panel in MDI not visible.
Code in MDI Form:
public void displayInit()
{
panel1.Visible ...
0
votes
4answers
684 views
C# : Difference between method types [duplicate]
Possible Duplicate:
What is the difference between Public, Private, Protected, and Nothing?
I have a question :
What is the difference between these method types ?
Static , Public , ...
0
votes
3answers
73 views
How to pass returned public object from loaded JavaScript file into callback function?
I have a JavaScript file, which returns public methods. This JavaScript file I am not loading at the beginning, but preloading only when it's needed. Example:
(function () {
// Some privat vars and ...
1
vote
1answer
293 views
Invoke a method from another class, without reinitializing it
I've a ViewController where I call a method from another class (TCP class), where I make a TCP connection to a server, that gives me a response. And I want to, when that TCP class, get's the response ...
1
vote
3answers
77 views
ocjective-c Obtain return value from public method
I'm pretty new to objective-C (and C in general) and iPhone development and am coming from the java island, so there are some fundamentals that are quite tough to learn for me.
I'm diving right into ...
0
votes
2answers
56 views
jQuery - Create public method that uses configured options
I'm trying to create a basic plugin that uses options and then a method off the object that uses the set options.
$.sn_Watermark = $.sn_Watermark || {
options: {
waterMarkText: ...
19
votes
2answers
636 views
OOP with R: is there a way to declare public and private methods (S4 Reference Classes)?
Up-front: I am aware that R is a functional language, so please don't bite ;-)
I've had great experiences with using an OOP approach for a lot of my programs.
Now, I'm wondering if there's a way to ...
0
votes
1answer
146 views
Hey I just met you, and this is crazy - here's my pr0blem, help me, maybe
I just started on this really simple C# project on visual stdio 2010 but i'm new to programming, so i figured i'd ask the pros..
lets say i had 2 forms: frmLogin and frmMain
frmLogin is where the ...
0
votes
1answer
94 views
Blindly calling a public method (C#)
OK, weird one. I have many usercontrols with a repeater, the layout of the repeater is the same in all controls, and they all have a bindData() method publically available.
I'm wondering, can I setup ...
0
votes
0answers
85 views
Find unreferenced public methods in actionscript
Is there any tool to find unreferenced public methods from actionscript code? I know of FlexPMD, but it only gives the unused private methods list.
3
votes
3answers
1k views
Difference Between Private, Public, and Protected Methods
I'm learning ruby, and have come up to a point where I am confused. The book I am using is talking about Private, Public, and Protected Methods, but I am still a bit confused...What are the ...
11
votes
4answers
2k views
Why should we declare interface methods as public?
When i implement an interface method, I am forced to make it a public method. We may have case where we want to use either the default(like in case of access within the same package) or protected. But ...
0
votes
7answers
250 views
public or nothing
In java, do we really have to do that in order our variable or method to be public? For example:
void aaa() {
...
}
or
public void aaa() {
...
}
If it is a must, why?
3
votes
3answers
195 views
too many public methods with @ModelAttribute
I have a controller that is 1600 lines long. This is mostly populated with a bunch of public methods with the @ModelAttribute annotation. It also has a few @RequestMapping methods.
I would like to ...
-2
votes
4answers
298 views
c# static public method
Within a class called Security, there is a method:
public static bool HasAccess(string UserId, string ModuleID)
How do I call this method and so it can return a bool result?
I tried the ...
4
votes
1answer
1k views
How do I get the public methods of a class without inherited methods?
Given any object I can call #public_methods and see all the methods it will respond to. However, I find it would sometimes be handy to get a quick list of all the public methods that are not ...
1
vote
1answer
54 views
Getting all public variables and methods in SWIG
If my C++ class has been wrapped by SWIG and exposed to the python interpreter. Is there a way to retrieve a collection of all public variables and methods in python? Thanks!
4
votes
1answer
862 views
Why do PHP magical methods have to be public?
I use magical methods in my PHP classes but when i try to put them private, I'm warned :
WARN: The magic method __get() must have public visibility and cannot
be static in ...
I wouldn't like ...
0
votes
3answers
99 views
C++ Concepts Acessing public methods
#include <iostream>
class Test {
public:
int i;
void print()
{
std::cout << "Hello" << std::endl;
}
};
int main()
{
class Test *p = NULL;
...
0
votes
4answers
284 views
Is there a way in Ruby to print out the public methods of an Object
... without including all of the public methods of the generic Object? I mean, other than doing array subtraction. I just want to quickly review what's available to me from an object sometimes without ...
2
votes
4answers
2k views
Private class with Public method?
Here is a piece of code:
private class myClass
{
public static void Main()
{
}
}
'or'
private class myClass
{
public void method()
{
}
}
I know, first one will not ...
3
votes
6answers
5k views
Private Methods Over Public Methods
I was examining the StringTokenizer.java class and there were a few questions that came to mind.
I noticed that the public methods which are to be used by other classes invoked some private method ...
0
votes
4answers
1k views
How to create public method?
This is a newbie type question. I want to create a public method that can be accessed by any activity in the application. The method I am trying to create is a simple method to show the versionName or ...
1
vote
2answers
445 views
jQuery tagit plugin, public methods
Does anyone know if the tagit jQuery plugin has a public method for removing just 1 specified tag from the list?
I saw there is for removing (clear) all tags from the list, but I would need to remove ...
3
votes
3answers
621 views
How to retrieve all public methods from *.dll
I have *.dll written with C# and I need to get list of all public methods or classes contained in that *.dll. Is there some way to do it programmatically with C#?
3
votes
4answers
417 views
Smalltalk public methods vs private/protected methods
I noticed that the Smalltalk language has no concept of private/protected methods. All methods are public. Coming from a Java/C++ background, I've thought of this as a fundamental weakness in the ...
5
votes
1answer
198 views
Programmatically check if method is public [duplicate]
Possible Duplicate:
How to check if a function is public or protected in PHP
Is there a function that checks if giver method of given class is public?
I know method_exists(), but it does ...
0
votes
3answers
108 views
Accessing public methods of Activity
I am new to android development and have a confusion that if an activity( a class extends Activity) has some public methods, can we access these public methods outside that activity.
Regards,
Waneya ...
1
vote
1answer
79 views
Attaching a public method to a prototype
This is my code:
var Quo = function(string) { //This creates an object with a 'status' property.
this.status = string;
};
Quo.prototype.get_status = function() { //This gives all ...
2
votes
2answers
239 views
Private parameters in public methods
Neither g++ nor javac emit warnings when the parameters to non-private methods are of private types (e.g., private nested classes). Such methods cannot be used by clients, but they can appear as part ...
1
vote
2answers
105 views
Defining all public methods or prototype individual methods?
So when I make a library, I usually do it in this fashion:
var myLib = (function() {
return {
publicProperty: 'test',
publicMethod: function() {
console.log('public ...
3
votes
9answers
479 views
How to hide a public method?
I have a method in my static state machine that is only used once when my application is first fired up. The method needs to be public, but I still want it hidden. Is there a way to use an annotation ...
7
votes
2answers
416 views
__call equivalent for public methods
I have an API for interacting with my web app, defined by a class. Each publicly accessible method needs to have authentication done before running. Rather than putting the same line over and over in ...
2
votes
4answers
567 views
Scala public methods: ';' expected but 'def' found
I wrote this method:
public def getXScaleFactor(panelWidth: Int): Double = {
return (panelWidth / (samplesContainer[0].length.asInstanceOf[Double]))
}
and I have problems with compilation:
...
6
votes
1answer
911 views
Disable “not used” warning for public methods of a class
The new intellij upgrade (10.5) now shows a warning that some of the methods defined for a class are not being used. These methods are public and I plan on not using all of them as I have created them ...
1
vote
2answers
103 views
Public Methods Inaccessible in Object Array
i have the problem of not being able to call my own methods in object elements of an array
Here is the code for the part of the code with the array:
public class CardRules {
private Object ...
0
votes
2answers
273 views
Calling a public method
I'm trying to figure out how to centralize a method that I use in a few of my ViewControllers. I already had a singleton that I was using for some variables. I called the singleton class Shared.
I ...
3
votes
5answers
126 views
Why does dependecy injection use public methods?
Why does dependecy injection use public methods?
Correct me if I'm wrong, but it's possible to change the implementation using reflexion.
