netbeans-8

Netbeans and Git, .obj files ignored

坚强是说给别人听的谎言 提交于 2019-12-05 07:18:55
I am working on a small git project involving .obj files. When I look at the "project tab" I see they are ignored But I cant understand why, if I look at my .gitignore: /DepthPeeling/nbproject/private/ /DepthPeeling/dist/ /DepthPeeling/build/ It looks fine If I open a Git Bash and type $ git add dragon.obj The following paths are ignored by one of your .gitignore files: DepthPelling/sry/depthPeeling/data/dragon.ogj Use -f if you really want to add them. fatal: no file added Wut? Might it be there is more than one .gitignore file? If I look for them, I find only the one in the root directory of

How to set Netbeans Action Item filters to ignore third party folders?

坚强是说给别人听的谎言 提交于 2019-12-05 01:57:38
I do not want to see errors and warnings for third party libraries in Netbeans Action Items list, so I created a filter as shown below: The filter is turned on, but I still see many items from node_modules folders. What am I doing wrong? How should the filter be configured to ignore everything coming from node_modules and vendor folders? Tho I found a solution to hide all parser errors in folder node_modules from this link: How do I Ignore the build folder in NetBeans 'Find In Projects'? But it will make Netbeans hides node_modules from project tree Steps: Tools > Options Miscellaneous Goto

Unable to autolaunch a dbus-daemon without a $DISPLAY for X11. NetBeans. Pi as remote host

≡放荡痞女 提交于 2019-12-04 18:03:16
I am trying to run the following example code using my NetBeans IDE: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <dbus/dbus.h> int main() { DBusConnection *connection = NULL; DBusError error; char buffer[1024]; dbus_error_init(&error); connection = dbus_bus_get(DBUS_BUS_SESSION, &error); if (dbus_error_is_set(&error)) { fprintf(stderr, "%s", error.message); abort(); } puts("This is my unique name"); puts(dbus_bus_get_unique_name(connection)); fgets(buffer, sizeof(buffer), stdin); return 0; } From an excellent tutorial: DBUS TUTORIAL USING THE LOW-LEVEL API I have my

Problems running JavaFX application on Java 1.7u80

偶尔善良 提交于 2019-12-04 15:06:39
I am using Netbeans 8.02 on the MAC and am creating a simple JavaFX application from the New Project Wizard. When I set the platform to Java 1.8 it works just fine, but when I try to run it on Java 1.7u80 I get "java.lang.NoClassDefFoundError: javafx/application/Application". Behavior is the same when running from the IDE or from the command line. Everything compiles just fine with either platform, so it does look like JavaFX is on the classpath for both platforms I have installed. My target application will have to run on 1.7, so I cannot simply go with 1.8 and call it a day. If you want to

unable to open web service tester page with jdk8 and netbeans 8

百般思念 提交于 2019-12-04 13:20:43
I wrote a simple web service program but I can not test it on glassfish 4.0 web server . When I Test Web service I see this message : Make sure the service has been deployed successfully, and the server is running. I can see it in list of deployed web services on glassfish web server . and I add this file to \jdk1.8.0\jre\lib to fix the problem. jaxp.properties javax.xml.accessExternalSchema = All But it doesn't work Also I see this error in url of tester page : lineNumber: 52; columnNumber: 88; schema_reference: Failed to read schema document 'xjc.xsd', because 'bundle' access is not allowed

Strange Gluon project structure for JavaFX - Android porting

妖精的绣舞 提交于 2019-12-04 12:23:56
The gradle build of Gluon plugin (in Netbeans 8.0.2) for porting JavaFX to Android creates the following directory structures: Source Packages [Java] Android/Java Packages Desktop/Java Packages Ios/Java Packages Each of these directories contain java packages inside them. Generally Gluon build would create the "main" class for us in one java package inside "Source Packages" directory [the name Packages with "Source Packages" might be misleading since it is not a Java package, its just a file system directory]. This main class extends Javafx Application class and thus is the entry point into

Passing data to the controller JAVAFX

跟風遠走 提交于 2019-12-04 06:25:51
问题 my imageI'm trying to pass the data (variables) from one stage to another stage, but when I try to access them in the second stage they are null. Code of the mainWindow. Go to window1 public class PrincipalController { private Stage primaryStage; public void initStage( Stage stage){ primaryStage = stage;} @FXML private void goWindow1(ActionEvent event) { try { FXMLLoader miCargador = new FXMLLoader(getClass().getResource("/vista/Window1.fxml")); Parent root = (Parent) miCargador.load(); //

Xdebug breakpoints always work except when using @runTestsInSeparateProcesses?

本秂侑毒 提交于 2019-12-04 04:57:31
问题 I finally got Xdebug working (including with breakpoints and the ability to "step over") for unit tests, feature tests, and for poking around in the browser. However, whenever I use @runTestsInSeparateProcesses because of this reason, Netbeans breakpoints no longer work. How can I use Xdebug breakpoints on tests that use @runTestsInSeparateProcesses ? I'm using Netbeans 8.2 on Windows 10 Version 1607 Build 14393.0. PHPUnit 5.7.21. I'm running Laravel 5.4 Homestead (which is Vagrant 1.9.5), so

Netbeans how to add a JavaEE version?

倖福魔咒の 提交于 2019-12-04 03:26:34
I recently downloaded Glassfish 5 which is JavaEE 8 compliant, my problem now is that when I try to create a Java Web Application for e.g. I don't see the JavaEE 8 version available, only from JavaEE 5 - 7. My {netbeans_install_path}/etc/netbeans.conf is pointing to JDK 8: netbeans_jdkhome="C:\Program Files\Java\jdk1.8.0_131" How do I add JavaEE 8 to the options ? BalusC How do I add JavaEE 8 to the options ? NetBeans does not have a Java EE 8 compatible version, yet. NetBeans is like a glorified text editor with one million additional features, primarily code generators. What it can't

Compiling any JavaFX project in NetBeans returns Unsupported major.minor version 52.0

依然范特西╮ 提交于 2019-12-04 01:28:03
I see a number of similar questions Netbeans 8.0 Unsupported major.minor version 52.0 error Unsupported major.minor version 52.0 Error (duplicate) Running a JAR I compiled: Unsupported major.minor version 52.0 Can't fix Unsupported major.minor version 52.0 even after fixing compatibility But none with the same circumstances as mine. I've tried their solutions anyway (when relevant) and they haven't helped. I had created a JavaFX FXML Application in NetBeans 8.0.2 and had to manually upgrade the JDK from 1.7 to 1.8 to get features I wanted. I believe I was using 1.8.0_52 for both the JRE and