Private is a way of encapsulation in object-oriented programming.

learn more… | top users | synonyms

2
votes
3answers
116 views

catalyst can't forward to private action

In Catalyst I'm trying to forward to a private action to do some work. Here is the function definition: sub get_form :Private :Args(1) { my ($self, $c, $type_id) = @_; #do stuff } I try to ...
0
votes
4answers
89 views

How to access the variable decleared inside of private class from other classes in java?

I have login page with 2 text field and a login button. when login button is clicked, the username and password is retrieved from txtfield and check with username and password in database. if password ...
3
votes
1answer
567 views

iOS 6 - ChatKit private API - send SMS

Has anyone managed yet to send an SMS from code without user interaction in iOS 6? I think, the ChatKit private API has to be used to do this. However, it seems that Apple changed this API quite a ...
6
votes
1answer
152 views

Difference between Private methods and Actions decorated with NonAction in Asp.Net MVC

in Asp.Net MVC if I decorate an action method with attribute NonAction then it wont be allowed to be called by the user visiting the site. same happens when I make it private So whats the difference ...
0
votes
2answers
164 views

How to call private method by other methods?

I am confused of calling a private method by another method(public) belonging to the same class.Once i have been told i gotta create an object of that class and then call the private method via this ...
0
votes
1answer
28 views

How to update another class's method?

There are two classes (class Home and class Away). Class Away has a method called update and update method has some arguments(speech,writing,reading) whose values are assigned in class Home. And ...
0
votes
2answers
67 views

Share private key in android development

I am developing an android app, on two machines, one at work and other at home. But when I compile and run on first machine, then goto second machine and change and compile and run Eclipse errors that ...
-1
votes
5answers
157 views

Why declare variables private in a class? [closed]

Folks I'll start by apologising as I'm sure this has been answered elsewhere - I just can't find an answer that explains it in a way I understand! I'm doing an MSc conversion course and there are some ...
0
votes
6answers
1k views

Private class declaration [duplicate]

Possible Duplicate: Java: Why can we define a top level class as private? Why can't we declare a private outer class? If we can have inner private class then why can't we have outer private ...
0
votes
1answer
40 views

Is it possible to get my private key back from a mobile HDD?

My Mac used as a developing machine was down a few days ago. It turned out an issue of the HDD. Unfortunately, I forgot to backup my private keys for iOS development and distribution. So, I can't ...
0
votes
2answers
800 views

Using the YouTube API v3 to list all private videos

Currently I'm building a site that will use a small number of user uploaded videos. These videos are uploaded to the server, then moved on to YouTube via the API v3. The private tag is set, and all ...
2
votes
2answers
522 views

Python read-only property

I don't know when attribute should be private and if I should use property. I read recently that setters and getters are not pythonic and I should use property decorator. It's ok. But what if I ...
0
votes
1answer
45 views

Content error fundamental about friend declaration in c++

I just don't get it, what is wrong in this friend declaration, first error msg: test.cpp: In function 'int main()': test.cpp:34:7: error: 'void steuerung::exe_testa(testa)' is private test.cpp:48:15: ...
-5
votes
2answers
86 views

Pass arguments to base class

I'm currently working on a C# project, i'm new to C# so i'm not that familiar with classes and all. anyway here is my sample program structure: class foo { public foo(String txt) : base(new ...
0
votes
3answers
647 views

convert .key to .pem

I need to encrypt with private key and I'm attempting to do so with the following code: $content = file_get_contents("file.key"); $plaintext = "14d9df79-8c4c-4380-8444-d31e1fd3f78a"; ...
-1
votes
1answer
162 views

how to store secure application data in iphone internal storage

Hi i am newbie to iphone application development. I am writing an iphone application where i want to store and read some secure data (such as passwords) which is application specific. I want this data ...
0
votes
1answer
66 views

Can't generate a working ssh public / private key pair for new user

I'm trying to add a new user to my Ubuntu system and give them SSH access, using public/private key to log in. But I can't seem to get it to work. Used putty gen to generate a public / private key ...
4
votes
4answers
488 views

C++ why use public, private or protected inheritence?

Well there is enough information about this subject. For example this thread was very clear to me: Difference between private, public and protected inheritance in C++ Except one point; Why is it ...
0
votes
1answer
80 views

How can I declare a private property within a named category?

I know about the possibility of declaring private properties on a class by putting them inside an unnamed category on that class declared in the implementation (.m) file of that class. That's not what ...
0
votes
5answers
74 views

Private methods in Inheritance

Here's an interesting code snippet: public class Superclass { public static void main (String[] args){ Superclass obj = new Subclass(); obj.doSomething(); #prints "from ...
0
votes
1answer
269 views

iOS - private API - accept incoming phone call

Is it possible to accept/answer an incoming phone call programmatically via a private API? I tried out the code to block an incoming call referenced at How can I use private APIs to block incoming ...
4
votes
5answers
812 views

C++ Do Sub-Classes Really Inherit Private Member Variables?

Alright, I have an interesting question/problem here. This will kind of require me to explain what I know of inheritance so far so bare with me, I'm still learning. Basically as far as I know, when ...
1
vote
3answers
191 views

Automatic way of generating accessor classes in C#

I've got the following problem. Suppose, that there is a class, which contains a private class, which have to be tested. To cut off unnecessary comments and answers, yes it has to stay private and ...
0
votes
0answers
139 views

Student of MCITP 2008, What should I do with MCSE 2012

It is less than 3 month that I took up a course for MCITP 2008 EA. But MS has published the new set of certifications(MCSE 2012). Since the MCITP exams will be expired soon, I won't even have the ...
1
vote
2answers
104 views

Distributing certificate and private key to iOS devices

I have an iOS application that uses certificates for messaging-signing following the Digital Signature Algorithm (DSA). In order to perform this signing, the app needs the certificate as well as the ...
5
votes
0answers
357 views

Windows Phone 8 - private APIs?

Is it possible to use private APIs in Windows Phone 8 development similar to iOS development? Of course, this is NOT about apps going to get published (AppStore/Marketplace). But there are a lot of ...
12
votes
1answer
335 views

C++ private modifier ignored on nested anonymous struct

The following sample code compiles just fine in Visual C++: class Test { private: struct { struct { int privateData; }; }; }; int main(int, char **) { Test ...
1
vote
1answer
60 views

How do I access private properties from function prototype in javascript module pattern?

I have been searching for a way to access private properties using the constructor module pattern. I came up with a solution that works but am not sure this is optimal. mynamespace.test = function () ...
2
votes
3answers
213 views

Actual implementation of private variables in python class [duplicate]

Possible Duplicate: The meaning of a single- and a double-underscore before an object name in Python I had a question when I was reading the python documentation on private variables link. ...
1
vote
6answers
285 views

Are the private members of superClass inherited by a subClass… Java?

I have gone through this: Does subclasses inherit private fields? But I'm still confused... I'm talking about inheriting only and not accessing. I know that they aren't visible out side class. But ...
16
votes
4answers
316 views

Private instance member access from anonymous static instance

Consider the following code: enum E { A { public int get() { return i; } }, B { public int get() { return this.i; } }, C { public int get() { return super.i; } }, D { public int get() ...
3
votes
2answers
889 views

Instantiate private inner class with java reflection

Is it possible to instantiate a private inner class from another class using java reflection. For example if i took this code public class Main{ public static void main(String[] args){} } class ...
0
votes
0answers
31 views

Managing Public and Private information in API Entites

I'm going to use Spring Security adapted as an RBAC for entities in Big Tables. We'll apply security rules at the entity manager CRUDS level, entity method level, and URL access level. If I have the ...
1
vote
2answers
125 views

Distribute in house iOS app to customers without distributing source code

We created a IOS app and want to distribute it to our customers. The problem is that we can't give them our source code and they can't give their private key to us. How can we distribute the iOS app ...
0
votes
1answer
99 views

Internal linkage for C++ private functions?

When I write object-oriented code in C, I normally put the struct definition together with the public functions in a header file, and implement the public functions in a separate .c file. I give the ...
0
votes
1answer
59 views

Retrieve a simple string from internet in android app

I have a simple question: I have a private comunity android app that is not in the market, so my question is when i do an upgrade to the app i want to have a button that makes the users of the app ...
0
votes
2answers
71 views

Providing downlaod link to file in non-public section of server

I have a number of files stored in a folder outside of the publicly accessible portion of my website. For example, the file 'abcd.jpg' is stored (in terms of the server) in '/home/private_files/' ...
0
votes
2answers
52 views

Accessing functions inside a Ruby block

I'm working inside a one-off Ruby script (so not inside an explicitly defined module or class) and I'm having a hard time accessing a function I've defined earlier in the script, from within a .each ...
7
votes
4answers
252 views

“Private” struct members in C with const

In order to have a clean code, using some OO concept can be usefull, even in C. I often write modules made of a pair of .h and .c files. The problem is that the user of the module have to be careful, ...
-3
votes
7answers
611 views

Can java private data members be accessed from outside the class? [duplicate]

Possible Duplicate: Is it possible in Java to access private fields via reflection Is there any way so that we can call the private data members of a class in java, can be accessed outside ...
3
votes
2answers
1k views

Git clone private repo, permission denied

I am trying to clone a private repository owned by another developer. I do not have direct communication with this developer. They sent me a theirusername-id_rsa.pub file and a ...
1
vote
2answers
124 views

Setting EditText as private field in Java code would lead to an error

Code snippets below, public class RelativeActivity extends Activity { // private Button ok_btn = (Button) findViewById(R.id.ok); // private EditText edit = (EditText) ...
0
votes
1answer
58 views

Encapsulate properties and methods in framework header files

My goal is to build a framework, but hide some methods and properties from public headers The point is that framework has everything built in, but different versions must have some properties and ...
6
votes
4answers
74 views

Private variable accessing

what is the use of declaring private Int64 _ID ; public Int64 ID{get { return _ID; }set { _ID = value; } }; like this to declare a private variable now normally in the coding we use ID directly ...
0
votes
4answers
135 views

Change private string from another class

I'm wondering as to why my private variable 'name' within my Events class won't change when I access the property from my Leisure class which inherits from Events. I need Leisure to use the properties ...
0
votes
0answers
89 views

APNs private key pem file

I am trying to create APNs Push Notification Certificate and private key. I have created certificate for both production and development. And also generated the private key also. And I have created ...
0
votes
2answers
61 views

Is there any way to have readonly feature without using get() in get() set() model?

Having the get set model: public class exampleclass { private Something something; public Something getSomething() { return something; } public void ...
1
vote
2answers
110 views

Inheritance and private instance variables

I'm having trouble figuring out how to access a private instance variable of the super class. I'm writing an equals method in the Dog class that compares to see if the name and breeds are the same, ...
2
votes
0answers
72 views

xui supports private browsing for iOS safari devices?

I have a website that is using xui.js When turning on Private Browsing mode on an iPhone iOS5+, the xui.ready function does not get called. Is there a fix for it? <script> alert('test'); ...
0
votes
0answers
73 views

Further enhancing public-private key encryption/decryption [closed]

I am a volunteer with a non-profit organisation. Part of my proposal entails encrypting and decrypting Personal Identifying Information, its storage on a database, and transfer over the internet. I ...

1 2 3 4 5 19