79112578

Date: 2024-10-22 05:49:14
Score: 0.5
Natty:
Report link

When trying to import the class in Oracle Forms Builder, ensure you are using the fully qualified class name. For example, if your class is CatFactBean inside a package com.example, use:

import com.example.CatFactBean;

If there is no package declaration in your CatFactBean class, simply import it like this:

import CatFactBean;

Make sure the case of the class name matches exactly what is in the code.

Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): When
  • Low reputation (0.5):
Posted by: Vimal