3,056 questions
Score of 0
1 answer
53 views
ATC Quick Fix / Recommended Quick Fix Options Are Disabled in Eclipse ADT
Version: SAP_BASIS - 758 Released.
Could you please advise what could be causing this? Are there any prerequisites, configuration settings, ADT version requirements, SAP Notes, or ATC run series ...
Score of 0
1 answer
76 views
What are the "set of values" for a user-defined type (UDT) in OOP languages?
I’m a PHP programmer looking to deepen my theoretical understanding of computer science concepts, specifically Abstract Data Types (ADTs) in the context of object-oriented programming (OOP).
And my ...
Score of -2
1 answer
303 views
Eclipse ADT with Android 14 SDK?
I have an app that works with any Android starting from 2.3.3
I did it on Windows XP with Eclipse Luna with ADT.
Now Google Play store requires the app to target the Android 14
SDK Manager in Eclipse ...
Score of 5
1 answer
2099 views
Android Studio gets stuck in "Terminating the app" every time I want to run a program in emulator... beginning of: kernel, system, crash, main
sorry but this is probably going to be a long one. Its my first time building an App with Android Studio and pretty much with Java. I'm trying to build a Chronometer. It was doing good and running ...
Score of 1
1 answer
3369 views
Git repository change scanner and check configuration has encountered a problem,
Got these errors after updating eclipse the current Version: 2023-12 (4.30.0)
Build id: 20231201-2043
Tried lot of things but doesn't work, These errors are appearing frequently and not able to work.
Score of 0
1 answer
68 views
how to define adt constructor for `int list` z3 adt dotnet api
how to define adt constructor for int list
Context.MkConstructor(name: string, recognizer: string, ?fieldNames: string array, ?sorts: Sort array, ?sortRefs: uint32 array) : Constructor
The ...
Score of 2
1 answer
993 views
Android Studio: product flavor combination with more than two flavor dimensions and build type
When working with more than 2 flavors, ADT/gradle doesn't currently support overriding with a subset of the flavors.
i.e. I have flavors apple/orange, red/green, bad/good. Then I can have resource/...
Score of 1
2 answers
224 views
Ad-hoc Polymorphism vs. Data Constructors in Haskell
Defining different data constructors for a type, and then defining functions using pattern matching over them resembles ad-hoc polymorphism in other languages a lot:
data Shape = Circle Float | ...
Score of 0
0 answers
60 views
How to use Textview output for another class method?
I have just started using eclipse adt(android developer tool) and i am working on electricbill calculator app. The app interface looks like this: App interface
The user will input a value in previous ...
Score of 0
1 answer
76 views
How to properly encapsulate a linked list struct in another struct in C?
I'm trying to create an abstract data type HiddenHeaders and accompanying functions (IsEmpty and Enqueue) whose low-level structure would be transparent to the user writing main(). Initialization of ...
Score of 1
3 answers
989 views
LogCat displaying messages as one single long string (no linebreaks)
Upon connecting my Android device (Redmi 6A, running Android 8.1) via USB debugging, LogCat displays all messages in a single line, instead of displaying each message in its own line:
Any idea why ...
Score of 0
1 answer
46 views
What, in Eclipse, modifies a project's .classpath to add the attribute exported="true" to classpathentry?
Looking at a .classpath file of a project that I inherited, I found the following difference between the committed file (to Git) and the working directory:
- <classpathentry kind="con" ...
Score of 1
1 answer
79 views
Unable to a Custom Collection into a text File
I'm creating a generic type ArrayQueue and I'm trying to save an ArrayQueue into a text file.
My code:
public void saveToFile(ArrayQueueInterface<Payment> paymentQ){
try {
File file =...
Score of 0
1 answer
61 views
Linked Queue ADT implementation, Lost node
When I implemet the dequeue() method, and in the following code
def dequeue(self):
if self.is_empty():
print("The Queue is empty")
return
answer ...
Score of 0
2 answers
126 views
Why must h’’(k) be an integer less than m in double hashing
Double hashing takes on the following form:
h(k)=(h’(k)+ i * h’’(k)) mod m
If m is a table size that is relatively prime to h’’(k), then wouldn’t choosing a h’’(k) value that is a prime number but ...