National Repository of Grey Literature 58 records found  beginprevious39 - 48next  jump to record: Search took 0.00 seconds. 
GPS based Localization using the Java ME application
Figurny, Radek ; Morávek, Patrik (referee) ; Růčka, Lukáš (advisor)
The task of the Master's thesis has been to develop the MIDlet, which is able to receive data from an external GPS module via Bluetooth. Data are received in the NMEA 0183 format and are processed to extract longitude, latitude, elevation, velocity, number of visible satellites and measurement accuracy of longitude, latitude and elevation. Users have a possibility to save their actual location with a short description to the cell phone’s memory. The MIDlet is also able to save a user defined way-point and navigate to this way-point. The MIDlet itself was developed in the Netbeans IDE with a software development kit (SDK) made by Nokia company. This kit is designed for the Symbian OS s60 3rd edition FP1, which contains a s60 emulator and a s60 MIDlet for a direct compilation in the cell phone. The MIDlet is made of three main parts. The first part shows a longitude, latitude, elevation, velocity, longitude and latitude measurement accuracy, date and time. The second one shows a direction of north, latitude and longitude. The last one shows a direction to the selected way-point and a distance to this location. In theoretic part of the thesis there are described the GPS navigation system, Bluetooth system, geodetic system WGS 84 and programing language Java and its part Java ME.
Compare NetBeans IDE, Eclipse IDE and IntellIJ IDEA
Gazárek, Roman ; Pecinovský, Rudolf (advisor) ; Šlajchrt, Zbyněk (referee)
This bachelor's thesis presents a comparison of integrated development environments NetBeans, Eclipse and IntelliJ IDEA. The aim is to acquaint the reader with the concepts of the compared integrated development environments in order to get a better idea of what these IDEs offer the users as well as how the given concepts of the compared IDEs differ. Finally, there are recommendations made for various groups of users on what criteria to focus and which IDE to rather choose.
Create kopenogram editor
Fiala, Martin ; Pecinovský, Rudolf (advisor) ; Buchalcevová, Alena (referee)
The goal of this thesis is the analysis of ways of graphic form of algorithms and their editors, design of editor for making kopenograms from source code and implementation of this editor what will work as part of plugin made for the NetBeans IDE. In the beginning of the thesis will be described a principles of structured programing, enlisted used ways of visualization of source code -- modeling language UML and other possibilities of graphic form of algorithm like flowchart diagrams, Nassi-Shneiderman diagrams, Jackson diagrams and especially not as well-known kopenograms. In the second part of the thesis is described creation of editor used to visualization of kopenograms. In the chapters is described structure of creating of application, the editors what are available for its creation, phase of creating editor and final testing for approve of the success. Part of the thesis is also a user guide for beginning with this program. Application what was made in this thesis is part of the plugin BJ2NB and will be used for education support of programming and algorithms on The University of Economics, Prague.
Extending plugin BJ2NB with additional features for Editor module.
Zrůst, Vojtěch ; Pecinovský, Rudolf (advisor) ; Pavlíčková, Jarmila (referee)
This bachelor thesis deals with functionality enhancements of the BJ2NB plugin for NetBeans. The plugin was created to facilitate, or remove the barriers to the transition from BlueJ, which is mainly used for educational purposes for programming for beginners, to the program called NetBeans IDE - a comprehensive development environment for professional application development. The plugin consists of 4 modules: Mediator, Interactor, Executor and Editor . Editor module handles a diagram creation and work with it. The aim is to modify some functionality of this module. One of the main goals is to adjust the format of the XML file that stores information about the diagram. Furthermore, it is about facilitating the work with a graphical environment to be suitable for beginners, and about diagram rendering adjustment.
NetBeans functionality mediation for extending modules
Bobuskyy, Serhiy ; Pecinovský, Rudolf (advisor) ; Pavlíčková, Jarmila (referee)
In the initial courses of programming languages student tend to encounter many difficulties. One of the way how the learning process can be facilitated is by using an appropriate IDE. Unfortunately there are not many appropriate tools available and even fewer of them are freeware. Among all these tools BlueJ is considered to be a prominent one. This is proved by the fact that it is applied at nearly one thousand universities all over the world. Nevertheless, the problem we have to deal with when teaching programming with BlueJ is that it is oversimplified. Sooner or later the students that take programming seriously have to trade this IDE for something more professional. The transition is not always an easy one. Some sources even state that the difficultness of the transition is comparable (or equal) to the difficultness of learning a new programming language. The bachelor thesis originates in an idea to teach students programming with a professional IDE right from the beginning. To make it possible, we have to find a suitable professional IDE. Unfortunately, as far as we know there is none around that would fit our needs/requirements. The only reasonable solution in the current situation seems to be to modi-fy an existing one. As an IDE to be modified the application called NetBeans IDE was cho-sen. The goal of this thesis was to analyze the structure of the NetBeans IDE, find out how one can extend its functionality, design and implement an API that would allow querying information about internal structure of java projects, making changes to the structure of the code and integrating new functionality in to the IDE. The goals that were set were successfully reached and the thesis represents a report of the process of analysis and implementation.
Development of a graphical editor for plug-in BJ2NB to NetBeans
Müller, Martin ; Pecinovský, Rudolf (advisor) ; Pavlíčková, Jarmila (referee)
This bachelor thesis is part of a project whose goal is to create a plug-in BJ2NB to NetBeans. It aims to bring into the NetBeans some approaches and possibilities of BlueJ environment, widely used for educational purposes, and to simplify the transition from simple BlueJ IDE to extensive and professional NetBeans for novice programmers. The goal of this work is to design and implement a graphical editor for plug-in BJ2NB that would display the current class diagram of the project and allow the user to work with the project through the diagram. First, there is made an analysis of graphical editors of freely available UML tools. Based on this analysis, there are designed properties of graphical editor and later also its detailed architecture. Finally, there are developed manuals for users. This module can be used by both programmers, who can use it as a tool to display the class diagram of the project, and users, who work with diagrams. The implemented module is included in appendices of this work.
Debugging of Programs
Tlučhoř, Tomáš ; Buchalcevová, Alena (advisor) ; Tichý, Vladimír (referee)
This bachelor thesis should be used as a study material for students of introductory courses of programming 4IT101 - Introduction to Programming and 4IT115 - Fundamentals of Software Engineering at the University of Economics, Prague. Whole thesis is about debugging. Theoretical part explains how bugs occur in source code and how to categorize, find and fix them. Several techniques of debugging are introduced with special concern for debuggers, which are essential tools for debugging and nowadays, they're integrated in practically every development environment. Theoretical part can be used as an introduction to debugging issues and it should be useful for students of both courses mentioned above. Practical part of this thesis focuses on description of debuggers in development environments BlueJ and NetBeans. Acquired knowledge should be useful also for programmers using Eclipse because its debugger works similarly. This part can be used as a handbook that helps students and beginners to quickly start using this strong and useful tool.
Editor of mind map's text equivalent
Hazuza, Petr ; Pecinovský, Rudolf (advisor) ; Rais, Aziz Ahmad (referee)
The purpose of this Bachelor thesis is to create a practical text equivalent editor of mind maps. The concept of a mind map and its text equivalent is briefly explained in the introductory part of the thesis. Based on this knowledge a suitable text format has been chosen, which enables to store all necessary information. Prior to the implementation itself an analysis of the means used for the solution will be carried out. It is a case of development platform Netbeans IDE and its module XML MultiView Editor in particular.

National Repository of Grey Literature : 58 records found   beginprevious39 - 48next  jump to record:
Interested in being notified about new results for this query?
Subscribe to the RSS feed.