A public method is a method declaration that allows access from other classes external to the current class.

learn more… | top users | synonyms

-7
votes
1answer
57 views

Can someone take a look at my assignment code? [closed]

I am new to Java so could you tell me where to put the highlighted code in my program because I really can't figure out where to put it import java.io.*; import java.util.*; public class GrandFinal ...
0
votes
1answer
60 views

WPF VB.net sharing public sub procedures

I'm new to VB.net so please understand. I have a MainWindow, Frame1, Frame2 (AdFrame1), Page1. MainWindow loads Page1 from Frame1 on startup. In MainWindow.vb class I have a Public Sub that makes ...
0
votes
5answers
67 views

Private Constructor initialized by a public method

I came cross a class with private constructor but the object is returned by another public method by call to the private constructor. What may be the advantage of such a construct when we could have ...
6
votes
6answers
2k views

public methods in package-private classes

Does it make a difference to mark methods as public in package-private classes? class SomePackagePrivateClass { void foo(); // package private method public void bar(); // public ...
0
votes
1answer
35 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 ...
-2
votes
1answer
60 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 ...
1
vote
3answers
76 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 ...
4
votes
1answer
436 views

Which Delphi version supports RTTI for public methods?

By default, RTTI in versions below 2010 is only created for published class members. I have read in a 2006 blog (http://hallvards.blogspot.com/2006/09/extended-class-rtti.html) that using $METHODINFO ...
0
votes
1answer
46 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 ...
56
votes
8answers
22k views

Methods in a Java interface with or without public access modifier

Should methods in a Java interface be declared with or without a public access modifier? Technically it doesn't matter of course. A class method that implements an interface is always public. But ...
8
votes
2answers
11k views

Twitter widget methods for dynamic widget updating

I am trying to add an option to a profile page for twitter widget and I have a field where users can add their twitter accounts and below it shows a preview of the widget. It works fine if I enter an ...
2
votes
3answers
669 views

Getting MethodInfo of protected and public methods only?

How to get MethodInfo of protected and public methods only? Please advise.
0
votes
3answers
44 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 ...
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
735 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
124 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
142 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
50 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
927 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
45 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); ...
19
votes
2answers
669 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
127 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
475 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
925 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
78 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
318 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 ...
5
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 ...
0
votes
2answers
58 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: ...
9
votes
5answers
5k views

Is there a custom FxCop rule that will detect unused PUBLIC methods?

I just tried FxCop. It does detect unused private methods, but not unused public. Is there a custom rule that I can download, plug-in that will detect public methods that aren't called from within ...
1
vote
2answers
472 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 ...
0
votes
1answer
147 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 ...
1
vote
2answers
82 views

Mono: non-standard public method in Object class

Does anybody know what is the "obj_address" public method in .Net Object class Mono implementation? Thank you, Michael
0
votes
1answer
96 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
4answers
4k views

Access Of Public Method Between Forms

I am trying to get access to Form1’s public method on another form Form2 as below. I have a textbox6 control on form1 and there is public method to bind it. But I want to bind it by form2 as below. ...
4
votes
2answers
320 views

How do I call a non-public method of a public class in Clojure?

I'm calling the twitter4j library using Clojure like so: (def twitter (. (TwitterFactory.) getInstance)) This works fine when I call it as a script. But when I use gen-class, I get: ...
-3
votes
4answers
337 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 ...
2
votes
2answers
333 views

Find out whether a method is protected or public

With this code I'm trying to test if I can call certain functions if (method_exists($this, $method)) $this->$method(); however now I want to be able to restrict the execution if the $method ...
3
votes
2answers
6k views

jQuery plugin public method/function

I am trying to achieve something like the following but dont know whats wrong: $.a = function() { // some logic here function abc(id) { alert('test'+id); } } $.a.abc('1'); I tried using the ...
1
vote
6answers
388 views

Factory Method pattern and public constructor

Im making a factory method that returns new instances of my objects. I would like to prevent anyone using my code from using a public constructor on my objects. Is there any way of doing this? How is ...
3
votes
4answers
5k views

Calling a public method on windows service

I have a timer in a windows service (.NET C#). I need to be able to change the elapsed value from an external program. If the timer is currently running, I need to be able to shorten the time ...
0
votes
2answers
284 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 ...
2
votes
3answers
143 views

Is it ever necessary to define a method as “public”?

If all methods are public unless they are explicitly defined as something else, is it ever necessary to define a method as public?
1
vote
0answers
193 views

Can't access public variable in public method? [duplicate]

Possible Duplicate: JS Object this.method() breaks via jQuery Hello, I'm playing around with creating classes in javascript but I don't think I really understand everything. Here is some ...
1
vote
4answers
110 views

Converting public method to extension method

In my project's core library we have a very big class, which is tending to become a God object. One of the reasons is that, over a period of time, tasks which should have been in different modules ...
1
vote
1answer
81 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
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 ...
18
votes
5answers
1k views

public static factory method

First of all please forgive me if its a really dumb question, I am just trying to learn this language to its core. I am reading Effective Java and the very first chapter talks about Static factory ...
5
votes
1answer
202 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
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 2